Skip to content

Commit

Permalink
Merge pull request #19317 from tolkadot/update-lib-telemetry
Browse files Browse the repository at this point in the history
chore(telemetry): update package.json paths for compatibility with ts-up
  • Loading branch information
ndelangen authored Oct 3, 2022
2 parents 767830f + a05d5d7 commit b2ad45c
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions code/lib/telemetry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,17 @@
},
"license": "MIT",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
Expand All @@ -31,7 +39,7 @@
],
"scripts": {
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
"prep": "node ../../../scripts/prepare.js"
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/client-logger": "7.0.0-alpha.34",
Expand All @@ -50,5 +58,11 @@
"publishConfig": {
"access": "public"
},
"bundler": {
"entries": [
"./src/index.ts"
],
"platform": "node"
},
"gitHead": "fc90fc875462421c1faa35862ac4bc436de8e75f"
}

0 comments on commit b2ad45c

Please sign in to comment.