Skip to content

Commit 63a5b46

Browse files
committed
wip
1 parent 72d534a commit 63a5b46

File tree

6 files changed

+118
-1
lines changed

6 files changed

+118
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"typescript": "5.8.2"
8888
},
8989
"workspaces": [
90-
"packages/*",
90+
"packages/**",
9191
"tests/dependencies/**",
9292
"tests/analysis_tests/**",
9393
"tests/gentype_tests/**",
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// @ts-check
2+
3+
import * as path from "node:path";
4+
5+
export const platformDir = import.meta.dirname;
6+
7+
export const bsc_exe = path.join(platformDir, "bsc.exe");
8+
9+
export const ninja_exe = path.join(platformDir, "ninja.exe");
10+
11+
export const rescript_exe = path.join(platformDir, "rescript.exe");
12+
13+
export const rescript_tools_exe = path.join(platformDir, "rescript-tools.exe");
14+
15+
export const rescript_editor_analysis_exe = path.join(
16+
platformDir,
17+
"rescript-editor-analysis.exe",
18+
);
19+
20+
export const rewatch_exe = path.join(platformDir, "rewatch.exe");
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@rescript/linux-arm64",
3+
"version": "12.0.0-alpha.12",
4+
"description": "ReScript toolchain",
5+
"type": "module",
6+
"keywords": [
7+
"ReScript",
8+
"Compiler",
9+
"Types",
10+
"JavaScript",
11+
"Language"
12+
],
13+
"license": "SEE LICENSE IN LICENSE",
14+
"homepage": "http://rescript-lang.org",
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/rescript-lang/rescript-compiler.git"
18+
},
19+
"engines": {
20+
"node": ">=20.11.0"
21+
},
22+
"os": [
23+
"linux"
24+
],
25+
"cpu": [
26+
"arm64"
27+
],
28+
"files": [
29+
"bin"
30+
],
31+
"publishConfig": {
32+
"access": "public"
33+
},
34+
"exports": {
35+
"./paths": "./bin/paths.js"
36+
}
37+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// @ts-check
2+
3+
import * as path from "node:path";
4+
5+
export const platformDir = import.meta.dirname;
6+
7+
export const bsc_exe = path.join(platformDir, "bsc.exe");
8+
9+
export const ninja_exe = path.join(platformDir, "ninja.exe");
10+
11+
export const rescript_exe = path.join(platformDir, "rescript.exe");
12+
13+
export const rescript_tools_exe = path.join(platformDir, "rescript-tools.exe");
14+
15+
export const rescript_editor_analysis_exe = path.join(
16+
platformDir,
17+
"rescript-editor-analysis.exe",
18+
);
19+
20+
export const rewatch_exe = path.join(platformDir, "rewatch.exe");
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "@rescript/linux-x64",
3+
"version": "12.0.0-alpha.12",
4+
"description": "ReScript binaries for Linux x64",
5+
"type": "module",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/rescript-lang/rescript-compiler.git"
9+
},
10+
"engines": {
11+
"node": ">=20.11.0"
12+
},
13+
"os": [
14+
"linux"
15+
],
16+
"cpu": [
17+
"x64"
18+
],
19+
"files": [
20+
"bin"
21+
],
22+
"publishConfig": {
23+
"access": "public"
24+
},
25+
"exports": {
26+
"./paths": "./bin/paths.js"
27+
}
28+
}

yarn.lock

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,18 @@ __metadata:
388388
languageName: node
389389
linkType: hard
390390

391+
"@rescript/linux-arm64@workspace:packages/@rescript/linux-arm64":
392+
version: 0.0.0-use.local
393+
resolution: "@rescript/linux-arm64@workspace:packages/@rescript/linux-arm64"
394+
languageName: unknown
395+
linkType: soft
396+
397+
"@rescript/linux-x64@workspace:packages/@rescript/linux-x64":
398+
version: 0.0.0-use.local
399+
resolution: "@rescript/linux-x64@workspace:packages/@rescript/linux-x64"
400+
languageName: unknown
401+
linkType: soft
402+
391403
"@rescript/react@link:../../../dependencies/rescript-react::locator=%40tests%2Freanalyze-deadcode%40workspace%3Atests%2Fanalysis_tests%2Ftests-reanalyze%2Fdeadcode":
392404
version: 0.0.0-use.local
393405
resolution: "@rescript/react@link:../../../dependencies/rescript-react::locator=%40tests%2Freanalyze-deadcode%40workspace%3Atests%2Fanalysis_tests%2Ftests-reanalyze%2Fdeadcode"

0 commit comments

Comments
 (0)