Skip to content

Commit 734ba7e

Browse files
committed
remove linting for now. clean up build system
1 parent 3f72f07 commit 734ba7e

File tree

4 files changed

+4
-33
lines changed

4 files changed

+4
-33
lines changed

.eslintrc

-14
This file was deleted.

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11

22
/dist
3-
/tmp
43

54
/node_modules
65
npm-debug.log

package.json

+3-16
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,11 @@
1616
},
1717
"scripts": {
1818
"tsc": "tsc -p tsconfig.json",
19-
"clean": "rm -rf dist tmp",
20-
"webpack": "webpack",
19+
"clean": "rm -rf dist",
2120
"build": "tsc -p tsconfig.json",
2221
"watch": "tsc -p tsconfig.json --watch",
23-
"test:ci": "npm run test:src:build && npm run test:karma:ci",
24-
"test": "concurrently npm:test:src:watch npm:test:karma:watch",
25-
"test:src:build": "rollup -c --environment BUILD:production",
26-
"test:src:watch": "rollup -c --environment BUILD:development --watch",
27-
"test:karma:ci": "karma start --browsers ChromeHeadless --single-run --no-auto-watch",
28-
"test:karma:watch": "karma start",
29-
"lint": "eslint src tests *.js",
22+
"test": "karma start",
23+
"test:ci": "karma start --browsers ChromeHeadless --single-run --no-auto-watch",
3024
"ci": "./scripts/ci.sh"
3125
},
3226
"dependencies": {
@@ -43,13 +37,6 @@
4337
"@vue/test-utils": "1.0.0-beta.29",
4438
"babel-loader": "^8.1.0",
4539
"css-loader": "^3.6.0",
46-
"eslint": "^5.16.0",
47-
"eslint-config-standard": "^12.0.0",
48-
"eslint-plugin-import": "^2.20.1",
49-
"eslint-plugin-jest": "^23.13.2",
50-
"eslint-plugin-node": "^9.2.0",
51-
"eslint-plugin-promise": "^4.1.1",
52-
"eslint-plugin-standard": "^4.0.1",
5340
"karma": "^5.0.4",
5441
"karma-chrome-launcher": "^3.1.0",
5542
"karma-jasmine": "^3.1.1",

scripts/ci.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ set -e # always immediately exit upon error
44

55
npm run clean
66
npm run build
7-
npm run test
8-
npm run lint
7+
npm run test:ci

0 commit comments

Comments
 (0)