|
32 | 32 | "karma": "^4.1.0", |
33 | 33 | "karma-chai": "^0.1.0", |
34 | 34 | "karma-chrome-launcher": "^2.2.0", |
| 35 | + "karma-firefox-launcher": "^2.1.2", |
35 | 36 | "karma-mocha": "^1.3.0", |
36 | 37 | "karma-mocha-reporter": "^2.2.5", |
37 | 38 | "karma-rollup-preprocessor": "^7.0.0", |
38 | 39 | "karma-sinon": "^1.0.5", |
39 | 40 | "karma-typescript": "^4.0.0", |
40 | 41 | "karma-typescript-es6-transform": "^4.0.0", |
| 42 | + "karma-webkit-launcher": "^1.0.2", |
41 | 43 | "node-fetch": "^2.6.0", |
42 | 44 | "npm-run-all": "^4.1.2", |
| 45 | + "playwright": "^1.17.1", |
43 | 46 | "prettier": "1.19.0", |
44 | 47 | "rimraf": "^2.6.3", |
45 | 48 | "rollup": "^1.10.1", |
|
53 | 56 | "webpack": "^4.30.0" |
54 | 57 | }, |
55 | 58 | "scripts": { |
56 | | - "build": "run-s build:es5 build:esm build:bundle", |
| 59 | + "build": "run-p build:cjs build:esm build:bundle", |
57 | 60 | "build:bundle": "rollup --config", |
58 | | - "build:dev": "run-s build:es5 build:esm", |
59 | | - "build:es5": "tsc -p tsconfig.build.json", |
| 61 | + "build:cjs": "tsc -p tsconfig.cjs.json", |
| 62 | + "build:dev": "run-p build:cjs build:esm", |
| 63 | + "build:es5": "yarn build:cjs # *** backwards compatibility - remove in v7 ***", |
60 | 64 | "build:esm": "tsc -p tsconfig.esm.json", |
61 | | - "build:watch": "run-p build:es5:watch build:esm:watch build:bundle:watch", |
| 65 | + "build:watch": "run-p build:cjs:watch build:esm:watch build:bundle:watch", |
62 | 66 | "build:bundle:watch": "rollup --config --watch", |
63 | | - "build:dev:watch": "run-p build:es5:watch build:esm:watch", |
64 | | - "build:es5:watch": "tsc -p tsconfig.build.json -w --preserveWatchOutput", |
| 67 | + "build:cjs:watch": "tsc -p tsconfig.cjs.json -w --preserveWatchOutput", |
| 68 | + "build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***", |
| 69 | + "build:dev:watch": "run-p build:cjs:watch build:esm:watch", |
65 | 70 | "build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", |
66 | 71 | "circularDepCheck": "madge --circular src/index.ts", |
67 | 72 | "clean": "rimraf dist esm build coverage .rpt2_cache", |
|
0 commit comments