Skip to content

Commit b1adeb6

Browse files
authored
fix(node): Fix downleveled types entry point (#10321)
Just noticed that this entry point was broken. `build/npm` doesn't exist because the node package is not a package with CDN bundles. Hence all NPM tarball contents are directly in `build`.
1 parent d471dcf commit b1adeb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"types": "build/types/index.d.ts",
2121
"typesVersions": {
2222
"<4.9": {
23-
"build/npm/types/index.d.ts": [
24-
"build/npm/types-ts3.8/index.d.ts"
23+
"build/types/index.d.ts": [
24+
"build/types-ts3.8/index.d.ts"
2525
]
2626
}
2727
},

0 commit comments

Comments
 (0)