Skip to content

Commit

Permalink
chore: missing build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Jan 7, 2025
1 parent 3048247 commit 6d4b564
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/unhead/optionalPlugins.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './dist/optionalPlugins'
15 changes: 14 additions & 1 deletion packages/unhead/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,26 @@
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./optionalPlugins": {
"types": "./dist/optionalPlugins.d.ts",
"import": "./dist/optionalPlugins.mjs",
"require": "./dist/optionalPlugins.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"optionalPlugins": {
"*": {
"optionalPlugins": [
"dist/optionalPlugins"
]
}
},
"files": [
"dist"
"dist",
"optionalPlugins.d.ts"
],
"scripts": {
"build": "unbuild .",
Expand Down

0 comments on commit 6d4b564

Please sign in to comment.