Skip to content

Commit 4343f4e

Browse files
committed
revert build dir names
1 parent 89e77e4 commit 4343f4e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
"author": "Diederik van den Burger <diederikvandenburger@tab.capital>",
66
"repository": "https://github.com/DiederikvandenB/apollo-link-sentry.git",
77
"homepage": "https://github.com/DiederikvandenB/apollo-link-sentry",
8-
"main": "build/cjs/index.js",
9-
"module": "build/esm/index.js",
10-
"browser": "build/esm/index.js",
11-
"typings": "build/esm/index.d.ts",
8+
"main": "lib-cjs/index.js",
9+
"module": "lib-esm/index.js",
10+
"browser": "lib-esm/index.js",
11+
"typings": "lib-esm/index.d.ts",
1212
"files": [
13-
"build/**/*"
13+
"lib-cjs/**/*",
14+
"lib-esm/**/*"
1415
],
1516
"sideEffects": false,
1617
"keywords": [
@@ -22,7 +23,7 @@
2223
"scripts": {
2324
"watch": "tsc-watch --project=tsconfig.json",
2425
"prebuild": "rimraf lib-cjs lib-esm",
25-
"build": "tsc --target esnext --outDir build/esm && tsc --target es5 --outDir build/cjs",
26+
"build": "tsc --target esnext --outDir lib-esm && tsc --target es5 --outDir lib-cjs",
2627
"test": "jest",
2728
"test:coverage": "jest --coverage --watchAll=false",
2829
"lint": "eslint .",

0 commit comments

Comments
 (0)