-
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README Updates and dev-utils changes
Updated the readmes to include the UMD and css gzipped sizes Updated the dev-utils to use constant flags for easier refactoring down the road. Updated the dev-utils to work a bit nicer for the base react-md package.
- Loading branch information
Showing
8 changed files
with
190 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// logging flags | ||
export const DEBUG = "--debug"; | ||
export const SILENT = "--silent"; | ||
|
||
// optional build additions | ||
export const UMD = "--umd"; | ||
export const CSS = "--css"; | ||
export const GZIP = "--gzip"; | ||
export const CLEAN = "--clean"; | ||
export const UPDATE = "--update"; | ||
export const EMPTY = "--empty"; | ||
export const STAGED = "--staged"; | ||
export const NO_CLEAN = "--no-clean"; | ||
export const THEMES = "--themes"; | ||
|
||
// filter build to only one type | ||
export const UMD_ONLY = "--umd-only"; | ||
export const VARIABLES_ONLY = "--variables-only"; | ||
export const STYLES_ONLY = "--styles-only"; | ||
export const SCRIPTS_ONLY = "--scripts-only"; | ||
export const THEMES_ONLY = "--themes-only"; | ||
export const UPDATE_ONLY = "--update-only"; | ||
export const CLEAN_ONLY = "--clean-only"; | ||
export const LOOKUPS_ONLY = "--lookups-only"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.