@fgv/ts-res-cli 5.1.0-0 → 5.1.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.
Files changed (1) hide show
  1. package/package.json +24 -24
package/package.json CHANGED
@@ -1,11 +1,25 @@
1
1
  {
2
2
  "name": "@fgv/ts-res-cli",
3
- "version": "5.1.0-0",
3
+ "version": "5.1.0-2",
4
4
  "description": "Command-line interface for ts-res resource compilation and management",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
7
7
  "ts-res-compile": "bin/ts-res-compile.js"
8
8
  },
9
+ "scripts": {
10
+ "build": "heft build --clean",
11
+ "test": "heft test --clean",
12
+ "build-all": "rushx build && rushx build-docs",
13
+ "coverage": "heft test --clean --coverage",
14
+ "clean": "heft clean",
15
+ "lint": "eslint src --ext .ts",
16
+ "fixlint": "eslint src --ext .ts --fix",
17
+ "build-docs": "echo nothing to de",
18
+ "test-handles": "rushx test --detectOpenHandles",
19
+ "clean-jest": "rushx test --clearCache",
20
+ "build-samples": "node bin/ts-res-compile.js compile -i test/data/sample-resources.json -o temp/sample-output.json --include-metadata",
21
+ "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"
22
+ },
9
23
  "keywords": [
10
24
  "typescript",
11
25
  "resources",
@@ -17,14 +31,15 @@
17
31
  "author": "Erik Fortune",
18
32
  "license": "MIT",
19
33
  "dependencies": {
20
- "commander": "^11.0.0",
21
- "@fgv/ts-utils": "5.1.0-0",
22
- "@fgv/ts-json": "5.1.0-0",
23
- "@fgv/ts-json-base": "5.1.0-0",
24
- "@fgv/ts-res": "5.1.0-0",
25
- "@fgv/ts-extras": "5.1.0-0"
34
+ "@fgv/ts-res": "workspace:*",
35
+ "@fgv/ts-utils": "workspace:*",
36
+ "@fgv/ts-extras": "workspace:*",
37
+ "@fgv/ts-json": "workspace:*",
38
+ "@fgv/ts-json-base": "workspace:*",
39
+ "commander": "^11.0.0"
26
40
  },
27
41
  "devDependencies": {
42
+ "@fgv/ts-utils-jest": "workspace:*",
28
43
  "@rushstack/heft": "1.2.6",
29
44
  "@rushstack/heft-node-rig": "2.11.26",
30
45
  "@rushstack/eslint-config": "4.6.4",
@@ -37,25 +52,10 @@
37
52
  "jest": "^29.7.0",
38
53
  "ts-jest": "^29.4.6",
39
54
  "typescript": "5.9.3",
40
- "@rushstack/heft-jest-plugin": "1.2.6",
41
- "@fgv/ts-utils-jest": "5.1.0-0"
55
+ "@rushstack/heft-jest-plugin": "1.2.6"
42
56
  },
43
57
  "repository": {
44
58
  "type": "git",
45
59
  "url": "https://github.com/ErikFortune/fgv.git"
46
- },
47
- "scripts": {
48
- "build": "heft build --clean",
49
- "test": "heft test --clean",
50
- "build-all": "rushx build && rushx build-docs",
51
- "coverage": "heft test --clean --coverage",
52
- "clean": "heft clean",
53
- "lint": "eslint src --ext .ts",
54
- "fixlint": "eslint src --ext .ts --fix",
55
- "build-docs": "echo nothing to de",
56
- "test-handles": "rushx test --detectOpenHandles",
57
- "clean-jest": "rushx test --clearCache",
58
- "build-samples": "node bin/ts-res-compile.js compile -i test/data/sample-resources.json -o temp/sample-output.json --include-metadata",
59
- "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"
60
60
  }
61
- }
61
+ }