File tree Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 7
7
"build:bundle",
8
8
"build:pack",
9
9
"build:tarball",
10
- "build:extras",
11
10
"build:types"
12
11
]
13
12
}
41
40
"{projectRoot}/build/cjs"
42
41
]
43
42
},
44
- "build:extras": {
45
- "dependsOn": [
46
- "^build:pack"
47
- ],
48
- "outputs": [
49
- "{projectRoot}/build"
50
- ]
51
- },
52
43
"build:types": {
53
44
"dependsOn": [
45
+ "^build:pack",
54
46
"^build:types"
55
47
],
56
48
"outputs": [
67
59
"{projectRoot}/build/aws"
68
60
]
69
61
}
62
+ },
63
+ "@sentry/utils": {
64
+ "build:pack": {
65
+ "dependsOn": [
66
+ "^build:pack",
67
+ "^build:types"
68
+ ],
69
+ "outputs": [
70
+ "{projectRoot}/build/esm",
71
+ "{projectRoot}/build/cjs",
72
+ "{projectRoot}/esm",
73
+ "{projectRoot}/cjs"
74
+ ]
75
+ }
70
76
}
71
77
}
72
78
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"private": true,
3
3
"scripts": {
4
- "build": "node ./scripts/verify-packages-versions.js && yarn run-p build:pack build: types build:bundle && yarn build:extras ",
4
+ "build": "node ./scripts/verify-packages-versions.js && run-s build:types build:pack build:bundle ",
5
5
"build:bundle": "lerna run build:bundle",
6
6
"build:dev": "run-p build:types build:pack",
7
7
"build:dev:filter": "lerna run build:dev --include-filtered-dependencies --include-filtered-dependents --scope",
8
- "build:extras": "lerna run build:extras",
9
8
"build:pack": "lerna run build:pack",
10
- "build:types": "lerna run --stream build:types",
9
+ "build:types": "lerna run build:types",
11
10
"build:watch": "lerna run build:watch",
12
11
"build:dev:watch": "lerna run build:dev:watch",
13
12
"build:types:watch": "ts-node scripts/build-types-watch.ts",
Original file line number Diff line number Diff line change 35
35
"react": "^18.0.0"
36
36
},
37
37
"scripts": {
38
- "build": "run-p build:pack build:types && yarn build:extras ",
38
+ "build": "run-p build:pack build:types",
39
39
"build:dev": "run-s build",
40
- "build:extras": "yarn build:plugin",
41
40
"build:plugin": "tsc -p tsconfig.plugin.json",
42
41
"build:pack": "run-p build:rollup build:plugin",
43
42
"build:rollup": "rollup -c rollup.npm.config.js",
Original file line number Diff line number Diff line change 38
38
"read-pkg": "^5.2.0"
39
39
},
40
40
"scripts": {
41
- "build": "run-p build:pack build:types build:bundle && yarn build:extras",
42
- "build:awslambda-layer": "echo 'WARNING: AWS lambda layer build emporarily moved to \\`build:bundle\\`.'",
41
+ "build": "run-p build:pack build:types build:bundle",
43
42
"build:bundle": "yarn ts-node scripts/buildLambdaLayer.ts",
44
43
"build:dev": "run-p build:pack build:types",
45
- "build:extras": "yarn build:awslambda-layer",
46
44
"build:pack": "rollup -c rollup.npm.config.js",
47
45
"build:types": "tsc -p tsconfig.types.json",
48
46
"build:watch": "run-p build:pack:watch build:types:watch",
Original file line number Diff line number Diff line change 26
26
"@types/express": "^4.17.14"
27
27
},
28
28
"scripts": {
29
- "build": "run-p build:pack build:types build:bundle && yarn build:extras #necessary for integration tests ",
29
+ "build": "run-p build:pack build:types build:bundle",
30
30
"build:bundle": "yarn rollup --config rollup.bundle.config.js",
31
31
"build:dev": "run-p build:pack build:types",
32
- "build:extras": "yarn build:prepack",
33
- "build:prepack": "ts-node ../../scripts/prepack.ts --bundles",
34
32
"build:pack": "rollup -c rollup.npm.config.js",
35
33
"build:types": "tsc -p tsconfig.types.json",
36
34
"build:watch": "run-p build:pack:watch build:bundle:watch build:types:watch",
You can’t perform that action at this time.
0 commit comments