|
21 | 21 | "clean:lib": "rm -rf lib", |
22 | 22 | "start": "NODE_ENV=development webpack-dev-server -d --config webpack.config.dist.js", |
23 | 23 | "test": "yarn lint && yarn test:unit && yarn test:visual && yarn test:functional", |
24 | | - "lint": "eslint ./src --ext .js --ignore-path .eslintignore", |
25 | | - "test:unit": "jest", |
26 | | - "test:unit:watch": "jest --watch", |
27 | | - "test:unit:coverage": "jest --coverage", |
28 | | - "test:visual": "yarn test:visual:install && yarn test:visual:chrome && yarn test:visual:firefox && yarn test:visual:mobile", |
| 24 | + "lint": "yarn eslint ./src --ext .js --ignore-path .eslintignore", |
| 25 | + "test:unit": "yarn jest", |
| 26 | + "test:unit:watch": "yarn jest --watch", |
| 27 | + "test:unit:coverage": "yarn jest --coverage", |
| 28 | + "test:visual": "yarn run test:visual:install && yarn run test:visual:chrome && yarn run test:visual:firefox && yarn run test:visual:mobile", |
29 | 29 | "test:visual:install": "yarn selenium-standalone install --silent", |
30 | 30 | "test:visual:chrome": "yarn codeceptjs --config codecept-visual.conf.js run --steps --grep @desktop", |
31 | 31 | "test:visual:firefox": "yarn codeceptjs --config codecept-visual.conf.js run --steps --profile firefox --grep @desktop", |
32 | 32 | "test:visual:mobile": "yarn codeceptjs --config codecept-visual.conf.js run --steps --grep @mobile", |
33 | 33 | "test:functional:debug": "yarn cypress open", |
34 | | - "test:functional": "yarn test:functional:chrome && yarn test:functional:firefox", |
| 34 | + "test:functional": "yarn run test:functional:chrome && yarn run test:functional:firefox", |
35 | 35 | "test:functional:firefox": "yarn cypress run --browser firefox", |
36 | 36 | "test:functional:chrome": "yarn cypress run --browser chrome", |
37 | 37 | "prepublish": "yarn run lib", |
38 | | - "semantic-release": "semantic-release --branch release", |
39 | | - "travis-deploy-once": "travis-deploy-once --pro", |
| 38 | + "semantic-release": "yarn semantic-release --branch release", |
| 39 | + "travis-deploy-once": "yarn travis-deploy-once --pro", |
40 | 40 | "copy": "yarn run copy:assets && yarn run copy:helpcenter && yarn run copy:demo", |
41 | | - "copy:assets": "copyfiles -f assets/* dist", |
42 | | - "copy:helpcenter": "copyfiles -f helpcenter/* dist", |
43 | | - "copy:demo": "copyfiles -f demo/* dist", |
| 41 | + "copy:assets": "yarn copyfiles -f assets/* dist", |
| 42 | + "copy:helpcenter": "yarn copyfiles -f helpcenter/* dist", |
| 43 | + "copy:demo": "yarn copyfiles -f demo/* dist", |
44 | 44 | "build": "yarn run dist && yarn run lib && yarn run copy", |
45 | | - "dist": "yarn run clean:dist && webpack --config webpack.config.dist.js", |
46 | | - "lib": "yarn run clean:lib && webpack --config webpack.config.lib.js" |
| 45 | + "dist": "yarn run clean:dist && yarn webpack --config webpack.config.dist.js", |
| 46 | + "lib": "yarn run clean:lib && yarn webpack --config webpack.config.lib.js" |
47 | 47 | }, |
48 | 48 | "devDependencies": { |
49 | 49 | "@applitools/eyes-webdriverio": "^5.7.2", |
|
72 | 72 | "jsdom": "^11.6.2", |
73 | 73 | "react": "16.12.0", |
74 | 74 | "react-dom": "16.12.0", |
| 75 | + "regenerator-runtime": "^0.13.5", |
75 | 76 | "selenium-standalone": "^6.17.0", |
76 | 77 | "semantic-release": "^12.2.5", |
77 | 78 | "travis-deploy-once": "^4.3.3", |
|
0 commit comments