Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
Update deps, enable cache for ESLint, tweak gitignore. (#438)
Browse files Browse the repository at this point in the history
* Update devDependencies.

* Enable cache for ESLint.

Also, tweak .gitignore/.eslintignore.
  • Loading branch information
XhmikosR committed Mar 13, 2019
1 parent a29d5b6 commit c3f579a
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 88 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
/coverage/
/dist/
/node_modules/
/src-cov/
/vendor/
26 changes: 17 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
# Logs
logs
logs/
*.log

# Runtime data
pids
pids/
*.pid
*.seed

.nyc_output/
coverage/
src-cov

node_modules/
# Local bootstrap repository
/bootstrap/
.bundle/
vendor/

# Cache
/.cache/

# Coverage
/.nyc_output/
/coverage/

# Bundler files and gems
/.bundle/
/vendor/

# npm packages
/node_modules/

# Vim generated files
*.swp
Expand Down
143 changes: 69 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build": "npm run browserify && npm run minify",
"dist": "npm run build",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint .",
"eslint": "eslint --cache-location .cache/.eslintcache .",
"lint": "npm run eslint",
"minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"includeSources,url=bootlint.min.js.map\" --output dist/browser/bootlint.min.js dist/browser/bootlint.js",
"nodeunit": "nodeunit test",
Expand All @@ -44,15 +44,15 @@
"async": "^2.6.2",
"browserify": "^16.2.3",
"coveralls": "^3.0.3",
"eslint": "^5.14.1",
"eslint": "^5.15.1",
"jquery": "^3.3.1",
"node-qunit-phantomjs": "^2.0.1",
"nodeunit": "^0.11.3",
"nyc": "^13.3.0",
"qunit": "^2.9.2",
"rewire": "^4.0.1",
"sinon": "^7.2.5",
"terser": "^3.16.1"
"sinon": "^7.2.7",
"terser": "^3.17.0"
},
"main": "./src/bootlint.js",
"bin": {
Expand Down

0 comments on commit c3f579a

Please sign in to comment.