@tgrv/void-cli 1.0.2 → 1.0.3

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.
package/bin/void.js CHANGED
@@ -192,7 +192,7 @@ function runBuild(pluginPathArg) {
192
192
  // Write package.json
193
193
  const pkgJson = {
194
194
  name: pluginName,
195
- version: "1.0.0",
195
+ version: manifest.version || "1.0.0",
196
196
  type: "module",
197
197
  main: "index.js",
198
198
  dependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tgrv/void-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "void": "./bin/void.js"
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "@void/{{name}}",
3
+ "version": "1.0.0",
3
4
  "type": "go",
4
5
  "buildDir": "@void/{{name}}"
5
6
  }
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "@void/{{name}}",
3
+ "version": "1.0.0",
3
4
  "type": "rust",
4
5
  "buildDir": "@void/{{name}}"
5
6
  }