forked from readmeio/api-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add build/watch shell scripts to api-explorer-ui
This allows you to do `lerna run build/watch` at the top level to build/watch all the packages
- Loading branch information
Dom Harrington
committed
Dec 7, 2017
1 parent
d8cbc57
commit 68bcd00
Showing
7 changed files
with
46,692 additions
and
1,246 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 @@ | ||
browserify src/index.jsx \ | ||
--extension jsx \ | ||
--standalone ApiExplorer \ | ||
-t [ babelify ] \ | ||
-g [ envify --NODE_ENV production ] \ | ||
-g uglifyify \ | ||
| uglifyjs --compress --mangle > ./dist/index.js |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 @@ | ||
watchify src/index.jsx \ | ||
--extension jsx \ | ||
--standalone ApiExplorer \ | ||
--debug \ | ||
--verbose \ | ||
-t [ babelify ] \ | ||
-o 'derequire > dist/index.js' |