@rrlab/biome-plugin 0.1.2-git-c5c6e0f.0 → 0.1.2-git-2238423.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/index.d.mts CHANGED
@@ -5,7 +5,6 @@ import { ShellService } from "@vlandoss/clibuddy";
5
5
  declare const TOOL_VERSIONS: {
6
6
  readonly "@biomejs/biome": {
7
7
  readonly install: "^2.0.0";
8
- readonly peer: ">=2.0.0";
9
8
  };
10
9
  };
11
10
  //#endregion
package/dist/index.mjs CHANGED
@@ -4,10 +4,7 @@ import { ToolService, decideScaffold, definePlugin } from "@rrlab/cli/plugin";
4
4
  import { colorize, isCI } from "@vlandoss/clibuddy";
5
5
  import { parse } from "comment-json";
6
6
  //#region src/tool-versions.ts
7
- const TOOL_VERSIONS = { "@biomejs/biome": {
8
- install: "^2.0.0",
9
- peer: ">=2.0.0"
10
- } };
7
+ const TOOL_VERSIONS = { "@biomejs/biome": { install: "^2.0.0" } };
11
8
  //#endregion
12
9
  //#region src/index.ts
13
10
  const FROM = import.meta.url;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rrlab/biome-plugin",
3
- "version": "0.1.2-git-c5c6e0f.0",
3
+ "version": "0.1.2-git-2238423.0",
4
4
  "description": "Biome plugin for @rrlab/cli — provides lint, format, and jsc capabilities.",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/run-run/biome-plugin#readme",
6
6
  "bugs": {
@@ -38,11 +38,13 @@
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@biomejs/biome": ">=2.0.0",
41
- "@rrlab/cli": "0.0.4-git-c5c6e0f.0"
41
+ "@rrlab/cli": "0.0.4-git-2238423.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@biomejs/biome": "2.4.4",
45
- "@rrlab/cli": "0.0.4-git-c5c6e0f.0",
44
+ "@biomejs/biome": "2.4.15",
45
+ "@types/semver": "^7.7.1",
46
+ "semver": "^7.8.1",
47
+ "@rrlab/cli": "0.0.4-git-2238423.0",
46
48
  "@rrlab/tsdown-config": "^0.1.0"
47
49
  },
48
50
  "scripts": {
@@ -1,3 +1,3 @@
1
1
  export const TOOL_VERSIONS = {
2
- "@biomejs/biome": { install: "^2.0.0", peer: ">=2.0.0" },
2
+ "@biomejs/biome": { install: "^2.0.0" },
3
3
  } as const;