Skip to content

Commit

Permalink
fix: export client sub path
Browse files Browse the repository at this point in the history
  • Loading branch information
ntnyq committed Mar 12, 2024
1 parent bc6b927 commit ffe952e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@
"exports": {
".": "./dist/node/index.js",
"./client": "./dist/client/index.js",
"./*": "./*"
"./client/*": "./dist/client/*",
"./package.json": "./package.json"
},
"main": "./dist/node/index.js",
"module": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-s clean build:lib copy",
"build:docs": "pnpm --filter=docs run build",
"build:docs": "pnpm -C docs run build",
"build:lib": "tsc",
"clean": "rimraf dist *.tsbuildinfo",
"copy": "copyfiles -a -u 1 -V src/**/*.css dist",
"dev": "run-s clean dev:lib",
"dev:docs": "pnpm --filter=docs run dev",
"dev:docs": "pnpm -C docs run dev",
"dev:lib": "tsc-watch --onSuccess \"npm run copy\"",
"lint": "eslint .",
"prepare": "husky",
Expand Down

0 comments on commit ffe952e

Please sign in to comment.