@fgv/ts-res-browser-cli 5.0.0-2
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.
- package/.rush/temp/45629f175c0b2c015132e9451c317583db1c0e2d.tar.log +32 -0
- package/.rush/temp/chunked-rush-logs/ts-res-browser-cli.build.chunks.jsonl +5 -0
- package/.rush/temp/operation/build/all.log +5 -0
- package/.rush/temp/operation/build/log-chunks.jsonl +5 -0
- package/.rush/temp/operation/build/state.json +3 -0
- package/.rush/temp/shrinkwrap-deps.json +651 -0
- package/README.md +131 -0
- package/bin/ts-res-browser-cli.js +40 -0
- package/config/rig.json +16 -0
- package/lib/browserLauncher.d.ts +53 -0
- package/lib/browserLauncher.d.ts.map +1 -0
- package/lib/browserLauncher.js +347 -0
- package/lib/browserLauncher.js.map +1 -0
- package/lib/cli.d.ts +37 -0
- package/lib/cli.d.ts.map +1 -0
- package/lib/cli.js +373 -0
- package/lib/cli.js.map +1 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +42 -0
- package/lib/index.js.map +1 -0
- package/lib/options.d.ts +95 -0
- package/lib/options.d.ts.map +1 -0
- package/lib/options.js +24 -0
- package/lib/options.js.map +1 -0
- package/lib/zipArchiver.d.ts +35 -0
- package/lib/zipArchiver.d.ts.map +1 -0
- package/lib/zipArchiver.js +148 -0
- package/lib/zipArchiver.js.map +1 -0
- package/package.json +49 -0
- package/rush-logs/ts-res-browser-cli.build.cache.log +3 -0
- package/rush-logs/ts-res-browser-cli.build.log +5 -0
- package/src/browserLauncher.ts +366 -0
- package/src/cli.ts +423 -0
- package/src/index.ts +26 -0
- package/src/options.ts +133 -0
- package/src/zipArchiver.ts +153 -0
- package/tsconfig.json +7 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Start time: Tue Jul 22 2025 06:50:10 GMT+0000 (Coordinated Universal Time)
|
|
2
|
+
Invoking "/usr/bin/tar -c -f /home/runner/work/fgv/fgv/common/temp/build-cache/45629f175c0b2c015132e9451c317583db1c0e2d-2e166ad7fa3e8197.temp -z --files-from=-"
|
|
3
|
+
|
|
4
|
+
======= BEGIN PROCESS INPUT ======
|
|
5
|
+
.rush/temp/operation/build/all.log
|
|
6
|
+
.rush/temp/operation/build/log-chunks.jsonl
|
|
7
|
+
.rush/temp/operation/build/state.json
|
|
8
|
+
lib/browserLauncher.d.ts
|
|
9
|
+
lib/browserLauncher.d.ts.map
|
|
10
|
+
lib/browserLauncher.js
|
|
11
|
+
lib/browserLauncher.js.map
|
|
12
|
+
lib/cli.d.ts
|
|
13
|
+
lib/cli.d.ts.map
|
|
14
|
+
lib/cli.js
|
|
15
|
+
lib/cli.js.map
|
|
16
|
+
lib/index.d.ts
|
|
17
|
+
lib/index.d.ts.map
|
|
18
|
+
lib/index.js
|
|
19
|
+
lib/index.js.map
|
|
20
|
+
lib/options.d.ts
|
|
21
|
+
lib/options.d.ts.map
|
|
22
|
+
lib/options.js
|
|
23
|
+
lib/options.js.map
|
|
24
|
+
lib/zipArchiver.d.ts
|
|
25
|
+
lib/zipArchiver.d.ts.map
|
|
26
|
+
lib/zipArchiver.js
|
|
27
|
+
lib/zipArchiver.js.map
|
|
28
|
+
======== END PROCESS INPUT =======
|
|
29
|
+
======= BEGIN PROCESS OUTPUT =======
|
|
30
|
+
======== END PROCESS OUTPUT ========
|
|
31
|
+
|
|
32
|
+
Exited with code "0"
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: heft build --clean \n"}
|
|
2
|
+
{"kind":"O","text":" ---- build started ---- \n"}
|
|
3
|
+
{"kind":"O","text":"[build:typescript] Using TypeScript version 5.8.3\n"}
|
|
4
|
+
{"kind":"O","text":" ---- build finished (4.946s) ---- \n"}
|
|
5
|
+
{"kind":"O","text":"-------------------- Finished (4.952s) --------------------\n"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"kind":"O","text":"Invoking: heft build --clean \n"}
|
|
2
|
+
{"kind":"O","text":" ---- build started ---- \n"}
|
|
3
|
+
{"kind":"O","text":"[build:typescript] Using TypeScript version 5.8.3\n"}
|
|
4
|
+
{"kind":"O","text":" ---- build finished (4.946s) ---- \n"}
|
|
5
|
+
{"kind":"O","text":"-------------------- Finished (4.952s) --------------------\n"}
|