You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
332 B
11 lines
332 B
#!/bin/bash
|
|
|
|
echo "Browserifying..."
|
|
npx browserify ./es6/index.js -s isEq > ./es5/infinity.temp.js
|
|
echo "Babelifying..."
|
|
npx babel ./es5/infinity.temp.js --presets=env -o ./es5/infinity.js
|
|
echo "Minifying output..."
|
|
npx uglifyjs ./es5/infinity.js > ./es5/infinity.min.js
|
|
echo "Cleaning up..."
|
|
rm ./es5/infinity.temp.js
|
|
echo "Done!"
|