Skip to content

Commit b11e3ee

Browse files
committed
chore: update package info
1 parent 348bc5a commit b11e3ee

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,22 @@
1010
"type": "module",
1111
"exports": {
1212
".": {
13-
"types": "./bundle/types.d.ts",
14-
"import": "./bundle/module.mjs",
15-
"require": "./bundle/module.cjs"
13+
"types": "./dist/types.d.ts",
14+
"import": "./dist/module.mjs",
15+
"require": "./dist/module.cjs"
1616
}
1717
},
18-
"main": "./bundle/module.cjs",
19-
"types": "./bundle/types.d.ts",
18+
"main": "./dist/module.cjs",
19+
"types": "./dist/types.d.ts",
2020
"files": [
21-
"bundle"
21+
"dist"
2222
],
2323
"scripts": {
2424
"prepack": "nuxt-module-build build",
2525
"dev": "nuxi dev playground",
2626
"dev:build": "nuxi build playground",
2727
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
28+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
2829
"lint": "eslint .",
2930
"test": "vitest run",
3031
"test:watch": "vitest watch",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./.nuxt/tsconfig.json",
33
"exclude": [
4-
"bundle",
4+
"dist",
55
"node_modules",
66
"playground",
77
]

0 commit comments

Comments
 (0)