Skip to content

Commit

Permalink
Fix package modules
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyFeliz committed Mar 29, 2024
1 parent 733e688 commit 3f67c07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"dist"
],
"types": "./dist/vue-tweet.vue.d.ts",
"main": "./dist/vue-tweet.umd.js",
"module": "./dist/vue-tweet.es.js",
"main": "./dist/vue-tweet.umd.cjs",
"module": "./dist/vue-tweet.js",
"exports": {
".": {
"import": "./dist/vue-tweet.es.js",
"require": "./dist/vue-tweet.umd.js"
"import": "./dist/vue-tweet.js",
"require": "./dist/vue-tweet.umd.cjs"
}
},
"scripts": {
Expand All @@ -24,7 +24,7 @@
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"generate-tag": "np --no-2fa --no-tests --no-publish",
"publish": "npm run generate-types && npm run build && npm run generate-tag && npm publish --access public",
"publish-package": "npm run build && npm run generate-types && npm run generate-tag && npm publish --access public",
"prepare": "husky install"
},
"dependencies": {
Expand Down Expand Up @@ -72,4 +72,4 @@
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix"
}
}
}

0 comments on commit 3f67c07

Please sign in to comment.