@rrlab/biome-plugin 0.1.0 → 0.1.1-git-bcee084.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.mjs +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -61,7 +61,7 @@ async function install(ctx) {
|
|
|
61
61
|
return {
|
|
62
62
|
devDependencies: {
|
|
63
63
|
"@biomejs/biome": TOOL_VERSIONS["@biomejs/biome"].install,
|
|
64
|
-
[BIOME_CONFIG_PKG]: "
|
|
64
|
+
[BIOME_CONFIG_PKG]: "latest"
|
|
65
65
|
},
|
|
66
66
|
files: [scaffoldDecision === "create" || scaffoldDecision === "overwrite" ? {
|
|
67
67
|
kind: "create",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rrlab/biome-plugin",
|
|
3
|
-
"version": "0.1.0",
|
|
3
|
+
"version": "0.1.1-git-bcee084.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": {
|
package/src/index.ts
CHANGED
|
@@ -67,7 +67,7 @@ export async function install(ctx: InstallContext): Promise<InstallResult> {
|
|
|
67
67
|
|
|
68
68
|
const devDependencies: Record<string, string> = {
|
|
69
69
|
"@biomejs/biome": TOOL_VERSIONS["@biomejs/biome"].install,
|
|
70
|
-
[BIOME_CONFIG_PKG]: "
|
|
70
|
+
[BIOME_CONFIG_PKG]: "latest",
|
|
71
71
|
};
|
|
72
72
|
|
|
73
73
|
const file: FileOp =
|