@rrlab/oxc-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 +2 -5
- package/dist/index.mjs +3 -12
- package/package.json +8 -6
- package/src/tool-versions.ts +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -5,15 +5,12 @@ import { ShellService } from "@vlandoss/clibuddy";
|
|
|
5
5
|
declare const TOOL_VERSIONS: {
|
|
6
6
|
readonly oxlint: {
|
|
7
7
|
readonly install: "^1.0.0";
|
|
8
|
-
readonly peer: ">=1.0.0";
|
|
9
8
|
};
|
|
10
9
|
readonly oxfmt: {
|
|
11
|
-
readonly install: "^0.
|
|
12
|
-
readonly peer: ">=0.30.0";
|
|
10
|
+
readonly install: "^0.51.0";
|
|
13
11
|
};
|
|
14
12
|
readonly "oxlint-tsgolint": {
|
|
15
|
-
readonly install: "^0.
|
|
16
|
-
readonly peer: ">=0.15.0";
|
|
13
|
+
readonly install: "^0.23.0";
|
|
17
14
|
};
|
|
18
15
|
};
|
|
19
16
|
//#endregion
|
package/dist/index.mjs
CHANGED
|
@@ -2,18 +2,9 @@ import { ToolService, definePlugin } from "@rrlab/cli/plugin";
|
|
|
2
2
|
import { colorize } from "@vlandoss/clibuddy";
|
|
3
3
|
//#region src/tool-versions.ts
|
|
4
4
|
const TOOL_VERSIONS = {
|
|
5
|
-
oxlint: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
},
|
|
9
|
-
oxfmt: {
|
|
10
|
-
install: "^0.30.0",
|
|
11
|
-
peer: ">=0.30.0"
|
|
12
|
-
},
|
|
13
|
-
"oxlint-tsgolint": {
|
|
14
|
-
install: "^0.15.0",
|
|
15
|
-
peer: ">=0.15.0"
|
|
16
|
-
}
|
|
5
|
+
oxlint: { install: "^1.0.0" },
|
|
6
|
+
oxfmt: { install: "^0.51.0" },
|
|
7
|
+
"oxlint-tsgolint": { install: "^0.23.0" }
|
|
17
8
|
};
|
|
18
9
|
//#endregion
|
|
19
10
|
//#region src/index.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rrlab/oxc-plugin",
|
|
3
|
-
"version": "0.1.2-git-
|
|
3
|
+
"version": "0.1.2-git-2238423.0",
|
|
4
4
|
"description": "oxc plugin for @rrlab/cli — provides lint (oxlint) and format (oxfmt) capabilities.",
|
|
5
5
|
"homepage": "https://github.com/variableland/dx/tree/main/run-run/oxc-plugin#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"oxfmt": ">=0.30.0",
|
|
40
40
|
"oxlint": ">=1.0.0",
|
|
41
41
|
"oxlint-tsgolint": ">=0.15.0",
|
|
42
|
-
"@rrlab/cli": "0.0.4-git-
|
|
42
|
+
"@rrlab/cli": "0.0.4-git-2238423.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependenciesMeta": {
|
|
45
45
|
"oxlint-tsgolint": {
|
|
@@ -47,10 +47,12 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"oxlint
|
|
53
|
-
"
|
|
50
|
+
"@types/semver": "^7.7.1",
|
|
51
|
+
"oxfmt": "0.51.0",
|
|
52
|
+
"oxlint": "1.66.0",
|
|
53
|
+
"oxlint-tsgolint": "0.23.0",
|
|
54
|
+
"semver": "^7.8.1",
|
|
55
|
+
"@rrlab/cli": "0.0.4-git-2238423.0",
|
|
54
56
|
"@rrlab/tsdown-config": "^0.1.0"
|
|
55
57
|
},
|
|
56
58
|
"scripts": {
|
package/src/tool-versions.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const TOOL_VERSIONS = {
|
|
2
|
-
oxlint: { install: "^1.0.0"
|
|
3
|
-
oxfmt: { install: "^0.
|
|
4
|
-
"oxlint-tsgolint": { install: "^0.
|
|
2
|
+
oxlint: { install: "^1.0.0" },
|
|
3
|
+
oxfmt: { install: "^0.51.0" },
|
|
4
|
+
"oxlint-tsgolint": { install: "^0.23.0" },
|
|
5
5
|
} as const;
|