@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 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 ci .";
18
- NpmScript2["LintFix"] = "bunx biome check --apply .";
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/enums",
3
3
  "type": "module",
4
- "version": "0.61.20",
4
+ "version": "0.61.21",
5
5
  "description": "Stacks enums.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
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 ci .',
19
- LintFix = 'bunx biome check --apply .',
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',