@rslint/core 0.1.7-canary.1754650335 → 0.1.7

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.
Files changed (2) hide show
  1. package/bin/rslint.cjs +3 -1
  2. package/package.json +7 -7
package/bin/rslint.cjs CHANGED
@@ -11,7 +11,9 @@ function getBinPath() {
11
11
  }
12
12
  let platformKey = `${process.platform}-${os.arch()}`;
13
13
 
14
- return require.resolve(`@rslint/${platformKey}/rslint${process.platform === 'win32' ? '.exe' : ''}`);
14
+ return require.resolve(
15
+ `@rslint/${platformKey}/rslint${process.platform === 'win32' ? '.exe' : ''}`,
16
+ );
15
17
  }
16
18
  function main() {
17
19
  const binPath = getBinPath();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rslint/core",
3
- "version": "0.1.7-canary.1754650335",
3
+ "version": "0.1.7",
4
4
  "exports": {
5
5
  ".": "./dist/index.js",
6
6
  "./bin": "./bin/rslint.cjs",
@@ -34,12 +34,12 @@
34
34
  "typescript": "5.8.3"
35
35
  },
36
36
  "optionalDependencies": {
37
- "@rslint/darwin-arm64": "0.1.7-canary.1754650335",
38
- "@rslint/darwin-x64": "0.1.7-canary.1754650335",
39
- "@rslint/linux-arm64": "0.1.7-canary.1754650335",
40
- "@rslint/win32-x64": "0.1.7-canary.1754650335",
41
- "@rslint/linux-x64": "0.1.7-canary.1754650335",
42
- "@rslint/win32-arm64": "0.1.7-canary.1754650335"
37
+ "@rslint/darwin-x64": "0.1.7",
38
+ "@rslint/darwin-arm64": "0.1.7",
39
+ "@rslint/linux-arm64": "0.1.7",
40
+ "@rslint/linux-x64": "0.1.7",
41
+ "@rslint/win32-arm64": "0.1.7",
42
+ "@rslint/win32-x64": "0.1.7"
43
43
  },
44
44
  "scripts": {
45
45
  "build:bin": "go build -v -o bin/rslint ../../cmd/rslint",