fix: align web packages with master's two-stage build layout
The web packages were authored against the old single-stage layout where tsc emitted directly to lib/. Master compiles declarations to lib/types/ via tsc -b, then bundles JS into lib/ via tsdown. Point every web package's tsc outDir at lib/types, update package.json types/exports/files to the lib/types declaration + lib/ bundle shape (matching dsh-bash/dsh-tool-bash), and bundle tool-web's subpath entries from lib/types/*.js rather than src.
This commit is contained in:
@@ -5,16 +5,29 @@
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"types": "lib/types/index.d.ts",
|
||||
"exports": {
|
||||
".": { "types": "./lib/index.d.ts", "default": "./lib/index.js" },
|
||||
"./search": { "types": "./lib/search.d.ts", "default": "./lib/search.js" },
|
||||
"./fetch": { "types": "./lib/fetch.d.ts", "default": "./lib/fetch.js" },
|
||||
".": {
|
||||
"types": "./lib/types/index.d.ts",
|
||||
"default": "./lib/index.js"
|
||||
},
|
||||
"./search": {
|
||||
"types": "./lib/types/search.d.ts",
|
||||
"default": "./lib/search.js"
|
||||
},
|
||||
"./fetch": {
|
||||
"types": "./lib/types/fetch.d.ts",
|
||||
"default": "./lib/fetch.js"
|
||||
},
|
||||
"./src/*": "./src/*",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
"lib",
|
||||
"lib/index.js",
|
||||
"lib/search.js",
|
||||
"lib/fetch.js",
|
||||
"lib/types/**/*.d.ts",
|
||||
"lib/types/**/*.d.ts.map",
|
||||
"src"
|
||||
],
|
||||
"license": "BSD-3-Clause",
|
||||
|
||||
Reference in New Issue
Block a user