Skip to content

Commit

Permalink
fix: commonjs
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaochenchen-igg-com committed Dec 14, 2022
1 parent 5084f2a commit ad0eb51
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

[0.4.5]
- Fix: commonjs

[0.4.4]
- Fix: types

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Make the vue script setup syntax support the name attribute

## CHANGELOG

[0.4.5]
- Fix: commonjs

[0.4.4]
- Fix: types

Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "unplugin-vue-setup-extend-plus",
"type": "module",
"version": "0.4.4",
"packageManager": "pnpm@7.1.1",
"description": "Extending the vue script setup syntactic sugar",
Expand All @@ -22,8 +23,8 @@
"type": "git",
"url": "git+https://github.com/chenxch/unplugin-vue-setup-extend-plus.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
Expand Down Expand Up @@ -75,6 +76,7 @@
"dev": "tsup --watch src",
"lint": "eslint .",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && pnpm publish --registry=https://registry.npmjs.org/",
"start": "esno src/index.ts",
"test": "vitest"
Expand Down

0 comments on commit ad0eb51

Please sign in to comment.