|
6 | 6 | "scripts": { |
7 | 7 | "cleanup": "shx rm -rf dist/", |
8 | 8 | "test": "yarn build && jest", |
9 | | - "test:all": "yarn test && yarn test:env && yarn test:playgrounds", |
| 9 | + "test:all": "yarn test && yarn test:env && yarn test:playgrounds && yarn test:e2e", |
10 | 10 | "test:env": "yarn build && yarn test:env:browser && yarn test:env:nodejs && yarn test:env:esm && yarn test:env:ts", |
11 | 11 | "test:env:browser": "yarn --cwd tests/env/express && yarn --cwd tests/env/express test", |
12 | 12 | "test:env:nodejs": "node tests/env/node/index.js", |
13 | 13 | "test:env:esm": "yarn --cwd tests/env/esm && yarn --cwd tests/env/esm start", |
14 | 14 | "test:env:ts": "yarn --cwd tests/env/typescript-node && yarn --cwd tests/env/typescript-node start", |
15 | | - "test:playgrounds": "yarn build:playground:vue && yarn build:playground:react && yarn build:playground:javascript && yarn build:playground:html", |
| 15 | + "test:playgrounds": "yarn build:playground:vue && yarn build:playground:react && yarn build:playground:javascript && yarn build:playground:html && yarn build:playground:angular", |
16 | 16 | "build:playground:vue": "yarn --cwd ./playgrounds/vue && yarn --cwd ./playgrounds/vue build", |
17 | 17 | "build:playground:react": "yarn --cwd ./playgrounds/react && yarn --cwd ./playgrounds/react build", |
18 | 18 | "build:playground:javascript": "yarn --cwd ./playgrounds/javascript && yarn --cwd ./playgrounds/javascript build", |
19 | 19 | "build:playground:html": "yarn --cwd ./playgrounds/html && yarn --cwd ./playgrounds/html build", |
| 20 | + "build:playground:angular": "yarn --cwd ./playgrounds/angular && yarn --cwd ./playgrounds/angular build", |
20 | 21 | "playground:vue": "yarn --cwd ./playgrounds/vue && yarn --cwd ./playgrounds/vue serve", |
21 | 22 | "playground:react": "yarn --cwd ./playgrounds/react && yarn --cwd ./playgrounds/react start", |
22 | 23 | "playground:javascript": "yarn --cwd ./playgrounds/javascript && yarn --cwd ./playgrounds/javascript start", |
23 | 24 | "playground:html": "yarn --cwd ./playgrounds/html && yarn --cwd ./playgrounds/html start", |
| 25 | + "playground:angular": "yarn --cwd ./playgrounds/angular && yarn --cwd ./playgrounds/angular start", |
| 26 | + "test:e2e": "yarn e2e:angular", |
| 27 | + "e2e:angular": "yarn --cwd ./playgrounds/angular && yarn --cwd ./playgrounds/angular e2e", |
24 | 28 | "postbuild": "yarn typingsheader", |
25 | 29 | "typingsheader": "node scripts/build.js", |
26 | 30 | "build": "yarn cleanup && rollup -c rollup.config.js && rollup --environment NODE_ENV:production -c rollup.config.js ", |
|
0 commit comments