@stacksjs/types 0.50.0 → 0.51.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.
- package/dist/cli.d.ts +12 -0
- package/dist/cli.mjs +2 -0
- package/dist/library.d.ts +1 -1
- package/dist/pages.d.ts +10 -7
- package/package.json +10 -10
package/dist/cli.d.ts
CHANGED
|
@@ -33,6 +33,16 @@ export interface CliOptions {
|
|
|
33
33
|
* @default false
|
|
34
34
|
*/
|
|
35
35
|
debug?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* **Verbosity Mode**
|
|
38
|
+
*
|
|
39
|
+
* When your application is in verbose mode, a different level of information,
|
|
40
|
+
* like useful outputs for debugging reasons, will be shown. When
|
|
41
|
+
* disabled, it defaults to the "normal experience."
|
|
42
|
+
*
|
|
43
|
+
* @default false
|
|
44
|
+
*/
|
|
45
|
+
verbose?: boolean;
|
|
36
46
|
/**
|
|
37
47
|
* **Current Work Directory**
|
|
38
48
|
*
|
|
@@ -216,6 +226,8 @@ export declare const enum Action {
|
|
|
216
226
|
Changelog = "changelog",
|
|
217
227
|
Fresh = "fresh",
|
|
218
228
|
GeneratePackageJsons = "generate-package-jsons",
|
|
229
|
+
GenerateSettings = "generate-settings",
|
|
230
|
+
GenerateOnboarding = "generate-onboarding",
|
|
219
231
|
Lint = "lint",
|
|
220
232
|
LintFix = "lint-fix",
|
|
221
233
|
Test = "test",
|
package/dist/cli.mjs
CHANGED
|
@@ -63,6 +63,8 @@ export var Action = /* @__PURE__ */ ((Action2) => {
|
|
|
63
63
|
Action2["Changelog"] = "changelog";
|
|
64
64
|
Action2["Fresh"] = "fresh";
|
|
65
65
|
Action2["GeneratePackageJsons"] = "generate-package-jsons";
|
|
66
|
+
Action2["GenerateSettings"] = "generate-settings";
|
|
67
|
+
Action2["GenerateOnboarding"] = "generate-onboarding";
|
|
66
68
|
Action2["Lint"] = "lint";
|
|
67
69
|
Action2["LintFix"] = "lint-fix";
|
|
68
70
|
Action2["Test"] = "test";
|
package/dist/library.d.ts
CHANGED
package/dist/pages.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
export interface PagesOption {
|
|
2
|
+
onboarding: {
|
|
3
|
+
path: string;
|
|
4
|
+
pages: string[];
|
|
5
|
+
};
|
|
6
|
+
settings: {
|
|
7
|
+
path: string;
|
|
8
|
+
pages: string[];
|
|
9
|
+
};
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.
|
|
4
|
+
"version": "0.51.0",
|
|
5
|
+
"packageManager": "pnpm@7.26.3",
|
|
6
6
|
"description": "The Stacks framework types.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"README.md"
|
|
34
34
|
],
|
|
35
35
|
"engines": {
|
|
36
|
-
"node": ">=v18.
|
|
37
|
-
"pnpm": ">=7.
|
|
36
|
+
"node": ">=v18.14.0",
|
|
37
|
+
"pnpm": ">=7.26.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@mdit-vue/plugin-component": "^0.11.2",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@rollup/pluginutils": "^5.0.2",
|
|
45
45
|
"@types/bcryptjs": "^2.4.2",
|
|
46
46
|
"@types/crypto-js": "^4.1.1",
|
|
47
|
-
"@types/eslint": "^8.
|
|
47
|
+
"@types/eslint": "^8.21.0",
|
|
48
48
|
"@types/fs-extra": "^11.0.1",
|
|
49
49
|
"@types/markdown-it-link-attributes": "^3.0.1",
|
|
50
50
|
"@types/minimatch": "^5.1.2",
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"cac": "^6.7.14",
|
|
56
56
|
"markdown-it": "^13.0.1",
|
|
57
57
|
"mkdist": "^1.1.0",
|
|
58
|
-
"typescript": "^4.9.
|
|
59
|
-
"unplugin-auto-import": "^0.
|
|
60
|
-
"unplugin-vue-components": "^0.
|
|
61
|
-
"vite-plugin-inspect": "^0.7.
|
|
58
|
+
"typescript": "^4.9.5",
|
|
59
|
+
"unplugin-auto-import": "^0.13.0",
|
|
60
|
+
"unplugin-vue-components": "^0.23.0",
|
|
61
|
+
"vite-plugin-inspect": "^0.7.15",
|
|
62
62
|
"vite-plugin-vue-layouts": "^0.7.0",
|
|
63
63
|
"vite-ssg": "^0.22.1",
|
|
64
|
-
"vitepress": "1.0.0-alpha.
|
|
64
|
+
"vitepress": "1.0.0-alpha.45"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "mkdist -d",
|