mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
11 lines
474 B
Bash
Executable file
11 lines
474 B
Bash
Executable file
#!/bin/sh
|
|
npm i recess jshint
|
|
echo "jshint lib/*.js lib/client/*.js lib/client/storage/*.js lib/server/*.js"
|
|
node_modules/jshint/bin/jshint --config test/.jshintrc lib/*.js lib/client/*.js lib/client/storage/*.js lib/server/*.js
|
|
echo "jshint package.json json/*.json"
|
|
node_modules/jshint/bin/jshint --config test/.jshintrc package.json json/*.json
|
|
#linting css files
|
|
echo "recess css/*.css"
|
|
./node_modules/recess/bin/recess css/*.css
|
|
node test/test.js
|
|
node cloudcmd.js test
|