@fgv/ts-res-cli 5.0.0-22 → 5.0.0-23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-res-cli",
3
- "version": "5.0.0-22",
3
+ "version": "5.0.0-23",
4
4
  "description": "Command-line interface for ts-res resource compilation and management",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -18,11 +18,11 @@
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "commander": "^11.0.0",
21
- "@fgv/ts-res": "5.0.0-22",
22
- "@fgv/ts-utils": "5.0.0-22",
23
- "@fgv/ts-json": "5.0.0-22",
24
- "@fgv/ts-extras": "5.0.0-22",
25
- "@fgv/ts-json-base": "5.0.0-22"
21
+ "@fgv/ts-res": "5.0.0-23",
22
+ "@fgv/ts-extras": "5.0.0-23",
23
+ "@fgv/ts-utils": "5.0.0-23",
24
+ "@fgv/ts-json": "5.0.0-23",
25
+ "@fgv/ts-json-base": "5.0.0-23"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@rushstack/heft": "~0.74.2",
@@ -37,7 +37,7 @@
37
37
  "jest": "^29.7.0",
38
38
  "ts-jest": "^29.4.1",
39
39
  "typescript": "^5.8.3",
40
- "@fgv/ts-utils-jest": "5.0.0-22"
40
+ "@fgv/ts-utils-jest": "5.0.0-23"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "typescript": "^5.7.3"
@@ -53,7 +53,7 @@
53
53
  "build-docs": "api-documenter markdown --input-folder ./temp --output-folder ./docs",
54
54
  "test-handles": "rushx test --detectOpenHandles",
55
55
  "clean-jest": "rushx test --clearCache",
56
- "build-samples": "node bin/ts-res-compile.js compile -i src/test/data/sample-resources.json -o temp/sample-output.json --include-metadata",
57
- "build-samples-all": "npm run build-samples && node bin/ts-res-compile.js compile -i src/test/data/resource-collection.json -o temp/collection-output.json --include-metadata && node bin/ts-res-compile.js compile -i src/test/data/sample-resources.json -o temp/sample-output.js -f js && node bin/ts-res-compile.js compile -i src/test/data/sample-resources.json -o temp/sample-output.ts -f ts"
56
+ "build-samples": "node bin/ts-res-compile.js compile -i test/data/sample-resources.json -o temp/sample-output.json --include-metadata",
57
+ "build-samples-all": "rushx build-samples && node bin/ts-res-compile.js compile -i test/data/resource-collection.json -o temp/collection-output.json --include-metadata && node bin/ts-res-compile.js compile -i test/data/sample-resources.json -o temp/sample-output.js -f js && node bin/ts-res-compile.js compile -i test/data/sample-resources.json -o temp/sample-output.ts -f ts"
58
58
  }
59
59
  }