@stacksjs/types 0.46.1 → 0.46.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/dist/cli.d.ts +7 -4
- package/dist/cli.mjs +7 -4
- package/dist/utils.d.ts +4 -0
- package/package.json +1 -1
package/dist/cli.d.ts
CHANGED
|
@@ -174,9 +174,9 @@ export declare const enum NpmScript {
|
|
|
174
174
|
Lint = "eslint .",
|
|
175
175
|
LintFix = "eslint . --fix",
|
|
176
176
|
MakeStack = "make:stack",
|
|
177
|
-
Test = "vitest --config
|
|
178
|
-
TestUi = "vitest --config
|
|
179
|
-
TestCoverage = "vitest --config
|
|
177
|
+
Test = "vitest --config vitest.config.ts",
|
|
178
|
+
TestUi = "vitest --config vitest.config.ts --ui",
|
|
179
|
+
TestCoverage = "vitest --config vitest.config.ts --coverage",
|
|
180
180
|
TestTypes = "vue-tsc --noEmit",
|
|
181
181
|
Generate = "generate",
|
|
182
182
|
GenerateTypes = "generate:types",
|
|
@@ -215,7 +215,10 @@ export declare const enum Action {
|
|
|
215
215
|
GeneratePackageJsons = "generate-package-jsons",
|
|
216
216
|
Lint = "lint",
|
|
217
217
|
LintFix = "lint-fix",
|
|
218
|
-
|
|
218
|
+
Test = "test",
|
|
219
|
+
TestUi = "test-ui",
|
|
220
|
+
TestCoverage = "test-coverage",
|
|
221
|
+
Typecheck = "typecheck"
|
|
219
222
|
}
|
|
220
223
|
export type { CAC as CLI } from 'cac';
|
|
221
224
|
export type { ExecaReturnValue as CommandResult } from 'execa';
|
package/dist/cli.mjs
CHANGED
|
@@ -21,9 +21,9 @@ export var NpmScript = /* @__PURE__ */ ((NpmScript2) => {
|
|
|
21
21
|
NpmScript2["Lint"] = "eslint .";
|
|
22
22
|
NpmScript2["LintFix"] = "eslint . --fix";
|
|
23
23
|
NpmScript2["MakeStack"] = "make:stack";
|
|
24
|
-
NpmScript2["Test"] = "vitest --config
|
|
25
|
-
NpmScript2["TestUi"] = "vitest --config
|
|
26
|
-
NpmScript2["TestCoverage"] = "vitest --config
|
|
24
|
+
NpmScript2["Test"] = "vitest --config vitest.config.ts";
|
|
25
|
+
NpmScript2["TestUi"] = "vitest --config vitest.config.ts --ui";
|
|
26
|
+
NpmScript2["TestCoverage"] = "vitest --config vitest.config.ts --coverage";
|
|
27
27
|
NpmScript2["TestTypes"] = "vue-tsc --noEmit";
|
|
28
28
|
NpmScript2["Generate"] = "generate";
|
|
29
29
|
NpmScript2["GenerateTypes"] = "generate:types";
|
|
@@ -63,6 +63,9 @@ export var Action = /* @__PURE__ */ ((Action2) => {
|
|
|
63
63
|
Action2["GeneratePackageJsons"] = "generate-package-jsons";
|
|
64
64
|
Action2["Lint"] = "lint";
|
|
65
65
|
Action2["LintFix"] = "lint-fix";
|
|
66
|
-
Action2["
|
|
66
|
+
Action2["Test"] = "test";
|
|
67
|
+
Action2["TestUi"] = "test-ui";
|
|
68
|
+
Action2["TestCoverage"] = "test-coverage";
|
|
69
|
+
Action2["Typecheck"] = "typecheck";
|
|
67
70
|
return Action2;
|
|
68
71
|
})(Action || {});
|
package/dist/utils.d.ts
CHANGED