Skip to content

Commit 69c4b82

Browse files
🔧 Update npm scripts
1 parent a805597 commit 69c4b82

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
with:
2727
node-version: '16'
2828
- run: npm ci
29-
- run: npm run eslint
3029
- run: npm test
3130
- uses: paambaati/codeclimate-action@v2.7.5
3231
env:

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,10 @@
7575
"clean:default": "rm -rf dist && rm -rf lib",
7676
"clean:win32": "(If exist dist rmdir dist /s /q) && (If exist lib rmdir lib /s /q)",
7777
"deploy:demo": "gh-pages -d demo",
78-
"eslint": "eslint \"./src/**/*.ts\" --fix",
7978
"jest": "jest --coverage --verbose",
8079
"jest:watch": "jest --watch --coverage --verbose",
81-
"lint": "eslint ./",
82-
"lint:fix": "eslint ./ --fix",
80+
"lint": "eslint \"./src/**/*.ts\"",
81+
"lint:fix": "npm run lint -- --fix",
8382
"postbuild": "npm run bundle",
8483
"prebuild": "npm run clean",
8584
"prepublishOnly": "npm run build",

0 commit comments

Comments
 (0)