@stacksjs/types 0.44.11 → 0.44.12
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/dist/cli.d.ts +9 -1
- package/dist/cli.mjs +8 -0
- package/package.json +2 -2
package/dist/cli.d.ts
CHANGED
|
@@ -177,7 +177,15 @@ export declare const enum NpmScript {
|
|
|
177
177
|
}
|
|
178
178
|
export declare const enum Action {
|
|
179
179
|
Release = "release",
|
|
180
|
-
Prepublish = "prepublish"
|
|
180
|
+
Prepublish = "prepublish",
|
|
181
|
+
BuildStacks = "build-stacks",
|
|
182
|
+
BuildComponentLibs = "build-component-libs",
|
|
183
|
+
BuildVueComponentLib = "build-vue-component-lib",
|
|
184
|
+
BuildWebComponentLib = "build-web-component-lib",
|
|
185
|
+
BuildCli = "build-cli",
|
|
186
|
+
BuildDocs = "build-docs",
|
|
187
|
+
BuildFunctionLib = "build-function-lib",
|
|
188
|
+
Fresh = "fresh"
|
|
181
189
|
}
|
|
182
190
|
export type { CAC as CLI } from 'cac';
|
|
183
191
|
export type { ExecaReturnValue as CommandResult } from 'execa';
|
package/dist/cli.mjs
CHANGED
|
@@ -49,5 +49,13 @@ export var NpmScript = /* @__PURE__ */ ((NpmScript2) => {
|
|
|
49
49
|
export var Action = /* @__PURE__ */ ((Action2) => {
|
|
50
50
|
Action2["Release"] = "release";
|
|
51
51
|
Action2["Prepublish"] = "prepublish";
|
|
52
|
+
Action2["BuildStacks"] = "build-stacks";
|
|
53
|
+
Action2["BuildComponentLibs"] = "build-component-libs";
|
|
54
|
+
Action2["BuildVueComponentLib"] = "build-vue-component-lib";
|
|
55
|
+
Action2["BuildWebComponentLib"] = "build-web-component-lib";
|
|
56
|
+
Action2["BuildCli"] = "build-cli";
|
|
57
|
+
Action2["BuildDocs"] = "build-docs";
|
|
58
|
+
Action2["BuildFunctionLib"] = "build-function-lib";
|
|
59
|
+
Action2["Fresh"] = "fresh";
|
|
52
60
|
return Action2;
|
|
53
61
|
})(Action || {});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.44.
|
|
4
|
+
"version": "0.44.12",
|
|
5
5
|
"packageManager": "pnpm@7.18.2",
|
|
6
6
|
"description": "The Stacks framework types.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"vite-plugin-inspect": "^0.7.10",
|
|
61
61
|
"vite-plugin-vue-layouts": "^0.7.0",
|
|
62
62
|
"vite-ssg": "^0.22.1",
|
|
63
|
-
"vitepress": "1.0.0-alpha.
|
|
63
|
+
"vitepress": "1.0.0-alpha.32"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build": "mkdist -d",
|