Clean up config

This commit is contained in:
Behind The Math
2019-02-11 23:03:25 -05:00
parent 79295232e7
commit 8386b355c9
3 changed files with 2 additions and 4 deletions

View File

@@ -1,4 +1,3 @@
pjax.js
node_modules/**
pjax.min.js
*.json

View File

@@ -1,4 +1,3 @@
pjax.js
node_modules/**
pjax.min.js
*.json

View File

@@ -45,7 +45,7 @@
"uglify-js": "^3.3.8"
},
"scripts": {
"lint": "eslint **/*.js",
"lint": "eslint .",
"standalone": "browserify index.js --standalone Pjax > pjax.js",
"build": "npm run standalone && uglifyjs pjax.js -o pjax.min.js",
"build-debug": "browserify index.js --debug --standalone Pjax > pjax.js",
@@ -64,7 +64,7 @@
},
"lint-staged": {
"*.js": [
"eslint --fix **/*.js",
"eslint --fix",
"prettier --write",
"git add"
]