|
7 | 7 | "types": "build/npm/types/src/index.d.ts", |
8 | 8 | "sideEffects": false, |
9 | 9 | "scripts": { |
10 | | - "bootstrap": "yarn && cd demo && yarn #TODO: change after migration", |
11 | 10 | "build:rollup": "run-s build:worker build:core", |
12 | 11 | "build": "run-s build:worker && run-p build:core build:types", |
13 | 12 | "build:dev": "run-s build #TODO adjust after adding CDN bundles", |
|
18 | 17 | "build:dev:watch": "yarn build:watch #TODO adjust after adding CDN bundles", |
19 | 18 | "build:types:watch": "tsc -p tsconfig.types.json --watch", |
20 | 19 | "build:npm": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm", |
21 | | - "circularDepCheck": "#TODO comment in after migration: madge --circular src/index.ts", |
| 20 | + "circularDepCheck": "madge --circular src/index.ts", |
22 | 21 | "clean": "rimraf build sentry-replay-*.tgz", |
23 | 22 | "fix": "run-s fix:eslint fix:prettier", |
24 | 23 | "fix:eslint": "eslint . --format stylish --fix", |
25 | 24 | "fix:prettier": "prettier --write \"{src,test,scripts,worker}/**/*.ts\"", |
26 | 25 | "lint": "run-s lint:prettier lint:eslint", |
27 | | - "lint:eslint": "eslint . --format stylish #TODO: we might want to use eslintcache after migration", |
| 26 | + "lint:eslint": "eslint . --cache --cache-location '../../eslintcache/' --format stylish", |
28 | 27 | "lint:prettier": "prettier --check \"{src,test,scripts,worker}/**/*.ts\"", |
29 | 28 | "test": "jest", |
30 | 29 | "test:watch": "jest --watch", |
31 | | - "start:demo": "yarn build:dev && cd demo && yarn start", |
32 | | - "build:prod": "yarn build #TODO remove, we don't need this anymore after migration", |
33 | | - "dev": "yarn build:dev:watch #TODO remove, we don't need this anymore after migration" |
| 30 | + "bootstrap:demo": "cd demo && yarn", |
| 31 | + "start:demo": "yarn build:dev && cd demo && yarn start" |
34 | 32 | }, |
35 | 33 | "repository": { |
36 | 34 | "type": "git", |
|
0 commit comments