improve running of tests
This commit is contained in:
parent
68b134e666
commit
f68b6b3f99
3 changed files with 5417 additions and 7 deletions
|
@ -2,9 +2,7 @@ language: node_js
|
|||
node_js:
|
||||
- "node"
|
||||
|
||||
before_script:
|
||||
- npm install -g jshint
|
||||
- npm install -g web-ext
|
||||
script:
|
||||
- jshint js/
|
||||
- web-ext lint --warnings-as-errors --ignore-files "libs/*" "docs/" "**/*.sh"
|
||||
- npm run jshint
|
||||
- npm run webext_lint
|
||||
- npm run htmllint
|
5403
package-lock.json
generated
5403
package-lock.json
generated
File diff suppressed because it is too large
Load diff
13
package.json
13
package.json
|
@ -7,10 +7,19 @@
|
|||
"ace-builds": "^1.2.8",
|
||||
"purecss": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"devDependencies": {
|
||||
"htmllint-cli": "0.0.6",
|
||||
"jshint": "^2.9.5",
|
||||
"npm-run-all": "^4.1.1",
|
||||
"web-ext": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"copy": "bash copy.sh",
|
||||
"build": "web-ext build --ignore-files '**/*.sh' 'docs/'"
|
||||
"build": "web-ext build --ignore-files '**/*.sh' 'docs/'",
|
||||
"webext_lint": "web-ext lint --warnings-as-errors --ignore-files 'libs/*' 'docs/' '**/*.sh'",
|
||||
"jshint": "jshint js/",
|
||||
"htmllint": "htmllint popup.html popup.html",
|
||||
"all": "npm-run-all copy --parallel webext_lint jshint htmllint --sequential build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
Reference in a new issue