@maas/vue-equipment 0.1.0-alpha → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +15 -2
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@maas/vue-equipment",
3
3
  "description": "A magic collection of Vue composables, plugins, components and directives",
4
- "version": "0.1.0-alpha",
4
+ "version": "0.1.0",
5
5
  "author": "Robin Scholz <https://github.com/robinscholz>, Christoph Jeworutzki <https://github.com/ChristophJeworutzki>",
6
6
  "devDependencies": {
7
7
  "@antfu/ni": "^0.21.5",
8
8
  "@nuxt/module-builder": "^0.4.0",
9
+ "@release-it/bumper": "^5.1.0",
9
10
  "@rollup/plugin-json": "^6.0.0",
10
11
  "@types/fs-extra": "^11.0.1",
11
12
  "@types/node": "^20.4.5",
@@ -100,7 +101,7 @@
100
101
  "prepare": "nr build",
101
102
  "test": "echo \"Error: no test specified\" && exit 1",
102
103
  "uninstall": "nlx rimraf --glob ./**/node_modules --glob ./**/pnpm-lock.yaml",
103
- "release": "turbo run release --concurrency=1"
104
+ "release": "turbo run release --concurrency=1 && release-it"
104
105
  },
105
106
  "types": "./dist/nuxt/types.d.ts",
106
107
  "volta": {
@@ -109,6 +110,18 @@
109
110
  "release-it": {
110
111
  "git": {
111
112
  "requireCleanWorkingDir": false
113
+ },
114
+ "npm": {
115
+ "allowSameVersion": true
116
+ },
117
+ "plugins": {
118
+ "@release-it/bumper": {
119
+ "in": "package.json",
120
+ "out": [
121
+ "package.json",
122
+ "packages/*/package.json"
123
+ ]
124
+ }
112
125
  }
113
126
  }
114
127
  }