Muthu Kumar
7 years ago
4 changed files with 3235 additions and 5 deletions
@ -0,0 +1 @@ |
|||
node_modules |
@ -0,0 +1,11 @@ |
|||
#!/bin/bash |
|||
|
|||
echo "Browserifying..." |
|||
npx browserify ./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!" |
File diff suppressed because it is too large
Loading…
Reference in new issue