Skip to content

Commit 80d6156

Browse files
committed
wip
1 parent e950b11 commit 80d6156

File tree

6 files changed

+543
-1
lines changed

6 files changed

+543
-1
lines changed

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
"typescript": "5.8.2"
8888
},
8989
"workspaces": [
90+
"packages/**",
9091
"tests/dependencies/**",
9192
"tests/analysis_tests/**",
9293
"tests/gentype_tests/**",

Diff for: packages/@rescript/linux-arm64/bin/paths.js

+20
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");

Diff for: packages/@rescript/linux-arm64/package.json

+37
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+
}

Diff for: packages/@rescript/linux-x64/bin/paths.js

+20
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");

Diff for: packages/@rescript/linux-x64/package.json

+28
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+
}

0 commit comments

Comments
 (0)