@stacksjs/enums 0.61.20 → 0.61.21
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/index.js +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -14,8 +14,8 @@ var NpmScript;
|
|
|
14
14
|
NpmScript2["DevDesktop"] = "dev:desktop";
|
|
15
15
|
NpmScript2["DevFunctions"] = "dev:functions";
|
|
16
16
|
NpmScript2["Fresh"] = "fresh";
|
|
17
|
-
NpmScript2["Lint"] = "bunx biome
|
|
18
|
-
NpmScript2["LintFix"] = "bunx biome check --
|
|
17
|
+
NpmScript2["Lint"] = "bunx biome check";
|
|
18
|
+
NpmScript2["LintFix"] = "bunx biome check --fix";
|
|
19
19
|
NpmScript2["LintPackageJson"] = "publint";
|
|
20
20
|
NpmScript2["MakeStack"] = "make:stack";
|
|
21
21
|
NpmScript2["Test"] = "bun test";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -15,8 +15,8 @@ export enum NpmScript {
|
|
|
15
15
|
DevDesktop = 'dev:desktop',
|
|
16
16
|
DevFunctions = 'dev:functions',
|
|
17
17
|
Fresh = 'fresh',
|
|
18
|
-
Lint = 'bunx biome
|
|
19
|
-
LintFix = 'bunx biome check --
|
|
18
|
+
Lint = 'bunx biome check',
|
|
19
|
+
LintFix = 'bunx biome check --fix',
|
|
20
20
|
LintPackageJson = 'publint',
|
|
21
21
|
MakeStack = 'make:stack',
|
|
22
22
|
Test = 'bun test',
|