Skip to content

Commit b155bee

Browse files
committed
remove build from package.json
1 parent 026264f commit b155bee

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

packages/tracing/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,36 @@
99
"engines": {
1010
"node": ">=8"
1111
},
12-
"main": "build/npm/cjs/index.js",
13-
"module": "build/npm/esm/index.js",
14-
"types": "build/npm/types/index.d.ts",
12+
"main": "npm/cjs/index.js",
13+
"module": "npm/esm/index.js",
14+
"types": "npm/types/index.d.ts",
1515
"exports": {
1616
".": {
17-
"import": "./build/npm/esm/index.js",
18-
"require": "./build/npm/cjs/index.js",
19-
"types": "./build/npm/types/index.d.ts"
17+
"import": "./npm/esm/index.js",
18+
"require": "./npm/cjs/index.js",
19+
"types": "./npm/types/index.d.ts"
2020
},
2121
"./node": {
22-
"import": "./build/npm/esm/node/index.js",
23-
"require": "./build/npm/cjs/node/index.js",
24-
"types": "./build/npm/types/node/index.d.ts"
22+
"import": "./npm/esm/node/index.js",
23+
"require": "./npm/cjs/node/index.js",
24+
"types": "./npm/types/node/index.d.ts"
2525
},
2626
"./browser": {
27-
"import": "./build/npm/esm/browser/index.js",
28-
"require": "./build/npm/cjs/browser/index.js",
29-
"types": "./build/npm/types/browser/index.d.ts"
27+
"import": "./npm/esm/browser/index.js",
28+
"require": "./npm/cjs/browser/index.js",
29+
"types": "./npm/types/browser/index.d.ts"
3030
}
3131
},
3232
"typesVersions": {
3333
"*": {
3434
"*": [
35-
"build/npm/types/index.d.ts"
35+
"npm/types/index.d.ts"
3636
],
3737
"node": [
38-
"./build/npm/types/node/index.d.ts"
38+
"./npm/types/node/index.d.ts"
3939
],
4040
"browser": [
41-
"./build/npm/types/browser/index.d.ts"
41+
"./npm/types/browser/index.d.ts"
4242
]
4343
}
4444
},
@@ -66,7 +66,7 @@
6666
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
6767
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
6868
"build:types:watch": "tsc -p tsconfig.types.json --watch",
69-
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
69+
"build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./npm",
7070
"clean": "rimraf build coverage sentry-tracing-*.tgz",
7171
"circularDepCheck": "madge --circular src/index.ts",
7272
"fix": "run-s fix:eslint fix:prettier",

0 commit comments

Comments
 (0)