mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 17:05:17 +00:00
10 lines
No EOL
496 B
Bash
10 lines
No EOL
496 B
Bash
#!/bin/sh
|
|
npm i jshint -g
|
|
echo "jshint server.js client.js lib/cloudfunc.js"
|
|
jshint --config ./.jshintrc ./server.js ./client.js
|
|
echo "jshint ./lib/cloudfunc.js ./lib/server/minify.js ./lib/client/keyBinding.js"
|
|
jshint --config ./.jshintrc ./lib/cloudfunc.js ./lib/server/minify.js ./lib/client/keyBinding.js
|
|
echo "jshint ./package.json ./config.json"
|
|
jshint --config ./.jshintrc ./package.json ./config.json
|
|
npm i uglify-js clean-css html-minifier css-b64-images
|
|
node server.js testing |