File tree 6 files changed +543
-1
lines changed
6 files changed +543
-1
lines changed Original file line number Diff line number Diff line change 87
87
"typescript" : " 5.8.2"
88
88
},
89
89
"workspaces" : [
90
+ " packages/**" ,
90
91
" tests/dependencies/**" ,
91
92
" tests/analysis_tests/**" ,
92
93
" tests/gentype_tests/**" ,
Original file line number Diff line number Diff line change
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" ) ;
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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" ) ;
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments