Skip to content

Commit

Permalink
chore: release v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
victorgarciaesgi committed Oct 6, 2023
1 parent a593731 commit 3bee228
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "regle",
"version": "0.0.2",
"private": true,
"description": "Vue form validator",
"scripts": {
"dev": "bun dev",
"build": "bun build.config.ts",
"lint": "eslint --ext .ts --ext .vue .",
"typecheck": "vue-tsc --noEmit",
"release": "bumpp && npm publish && git push --follow-tags"
"build": "pnpm run -r --parallel build",
"release": "bumpp -r && pnpm run -r --parallel release && git push --follow-tags"
},
"devDependencies": {
"@types/prettier": "3.0.0",
Expand Down
22 changes: 14 additions & 8 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "@regle/core",
"version": "0.0.1-alpha.0",
"name": "regle",
"version": "0.0.2",
"description": "Vue form validator",
"scripts": {
"dev": "bun dev",
"build": "bun build.config.ts",
"lint": "eslint --ext .ts --ext .vue .",
"typecheck": "tsc --noEmit",
"release": "bumpp && npm publish && git push --follow-tags"
"release": "npm publish",
"build": "tsup"
},
"devDependencies": {
"@types/prettier": "3.0.0",
Expand All @@ -24,11 +23,18 @@
"typescript": "5.2.2",
"vue": "3.3.4",
"vue-eslint-parser": "9.3.1",
"vue-tsc": "1.8.15"
"vue-tsc": "1.8.15",
"tsup": "7.2.0"
},
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
Expand Down

0 comments on commit 3bee228

Please sign in to comment.