@stacksjs/actions 0.42.2 → 0.43.1

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.
@@ -70,7 +70,14 @@ export async function generatePackageJson(type) {
70
70
  }
71
71
  `
72
72
  });
73
- log.success(`Created the ${type} package.json.`);
73
+ let prettyName;
74
+ if (type === "vue-components")
75
+ prettyName = "Vue Component library";
76
+ else if (type === "web-components")
77
+ prettyName = "Web Component library";
78
+ else if (type === "functions")
79
+ prettyName = "Function Library";
80
+ log.success(`Created the ${prettyName} package.json`);
74
81
  } catch (err) {
75
82
  log.error(err);
76
83
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/actions",
3
3
  "type": "module",
4
- "version": "0.42.2",
5
- "packageManager": "pnpm@7.17.0",
4
+ "version": "0.43.1",
5
+ "packageManager": "pnpm@7.17.1",
6
6
  "description": "The Stacks actions.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -37,23 +37,23 @@
37
37
  ],
38
38
  "engines": {
39
39
  "node": ">=v18.12.1",
40
- "pnpm": ">=7.17.0"
40
+ "pnpm": ">=7.17.1"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "markdown-it": "^13.0.1",
44
- "vue-component-meta": "^1.0.9",
45
- "@stacksjs/config": "0.42.2",
46
- "@stacksjs/path": "0.42.2",
47
- "@stacksjs/storage": "0.42.2",
48
- "@stacksjs/strings": "0.42.2",
49
- "@stacksjs/types": "0.42.2",
50
- "@stacksjs/utils": "0.42.2",
51
- "@stacksjs/x-ray": "0.42.2"
44
+ "vue-component-meta": "^1.0.10",
45
+ "@stacksjs/config": "0.43.1",
46
+ "@stacksjs/path": "0.43.1",
47
+ "@stacksjs/storage": "0.43.1",
48
+ "@stacksjs/strings": "0.43.1",
49
+ "@stacksjs/types": "0.43.1",
50
+ "@stacksjs/utils": "0.43.1",
51
+ "@stacksjs/x-ray": "0.43.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "mkdist": "^1.0.0",
55
55
  "typescript": "^4.9.3",
56
- "@stacksjs/testing": "0.42.2"
56
+ "@stacksjs/testing": "0.43.1"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "mkdist -d",