|
9 | 9 | "types/index.d.ts" |
10 | 10 | ], |
11 | 11 | "scripts": { |
12 | | - "build": "node build/build.js", |
13 | | - "build:test": "cross-env NODE_ENV=test node build/build.js", |
| 12 | + "build": "node scripts/build.js", |
| 13 | + "build:test": "cross-env NODE_ENV=test node scripts/build.js", |
14 | 14 | "coverage": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test:unit", |
15 | 15 | "docs": "cd docs && gitbook install && gitbook serve", |
16 | | - "docs:deploy": "build/update-docs.sh", |
| 16 | + "docs:deploy": "scripts/update-docs.sh", |
17 | 17 | "docs:serve": "cd docs && gitbook serve", |
18 | 18 | "flow": "flow check", |
19 | 19 | "lint": "eslint --ext js,vue src test flow build --ignore-path .gitignore", |
20 | 20 | "lint:docs": "eslint --ext js,vue,md docs --ignore-path .gitignore", |
21 | 21 | "lint:fix": "npm run lint -- --fix", |
22 | | - "setup": "node build/install-hooks.js", |
23 | 22 | "test": "npm run lint && npm run lint:docs && npm run flow && npm run test:types && npm run test:unit && npm run test:unit:karma", |
24 | | - "test:compat": "test/test.sh", |
25 | | - "test:unit": "npm run build:test && cross-env BABEL_ENV=test && mocha-webpack --webpack-config build/webpack.test.config.js test/specs --recursive --require test/setup/mocha.setup.js", |
| 23 | + "test:compat": "scripts/test-compat.sh", |
| 24 | + "test:unit": "npm run build:test && cross-env BABEL_ENV=test && mocha-webpack --webpack-config test/setup/webpack.test.config.js test/specs --recursive --require test/setup/mocha.setup.js", |
26 | 25 | "test:unit:karma": "npm run build:test && cross-env BABEL_ENV=test TARGET=browser karma start test/setup/karma.conf.js --single-run", |
27 | 26 | "test:types": "tsc -p types", |
28 | | - "release": "bash build/release.sh", |
29 | | - "release:note": "node build/gen-release-note.js" |
| 27 | + "release": "bash scripts/release.sh", |
| 28 | + "release:note": "node scripts/gen-release-note.js" |
30 | 29 | }, |
31 | 30 | "repository": { |
32 | 31 | "type": "git", |
|
0 commit comments