-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build script and instructions (#270)
Build script and instructions + minor cleanups
- Loading branch information
1 parent
860e47d
commit 720fb9c
Showing
7 changed files
with
288 additions
and
4 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,14 @@ | |
"url": "[email protected]:bernii/gauge.js.git" | ||
}, | ||
"author": "bernii", | ||
"license": "MIT" | ||
"license": "MIT", | ||
"devDependencies": { | ||
"coffeescript": "^1.12.7", | ||
"terser": "^5.27.1" | ||
}, | ||
"scripts": { | ||
"build:coffee": "coffee -c -m -o ./dist/ ./dist", | ||
"minify": "terser ./dist/gauge.js -m -o ./dist/gauge.min.js -c", | ||
"build": "npm run build:coffee && npm run minify" | ||
} | ||
} |