File tree Expand file tree Collapse file tree 6 files changed +118
-1
lines changed Expand file tree Collapse file tree 6 files changed +118
-1
lines changed Original file line number Diff line number Diff line change 8787 "typescript" : " 5.8.2"
8888 },
8989 "workspaces" : [
90- " packages/*" ,
90+ " packages/** " ,
9191 " tests/dependencies/**" ,
9292 " tests/analysis_tests/**" ,
9393 " 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+ }
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments