@red-hat-developer-hub/translations-cli 0.0.1 → 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/CHANGELOG.md +6 -0
- package/package.json +9 -12
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@red-hat-developer-hub/translations-cli",
|
|
3
3
|
"description": "CLI tools for translation workflows with our TMS.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
7
7
|
},
|
|
@@ -19,18 +19,16 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "backstage-cli package build",
|
|
21
21
|
"lint": "backstage-cli package lint",
|
|
22
|
-
"test": "
|
|
23
|
-
"test:
|
|
24
|
-
"test:
|
|
25
|
-
"test:
|
|
26
|
-
"test:
|
|
27
|
-
"test:
|
|
28
|
-
"test:manual": "echo 'See test/manual-test-checklist.md for manual testing steps'",
|
|
22
|
+
"test": "backstage-cli package test",
|
|
23
|
+
"test:quick": "./scripts/quick-test.sh",
|
|
24
|
+
"test:integration": "./scripts/integration-test.sh",
|
|
25
|
+
"test:real-repo": "./scripts/real-repo-test.sh",
|
|
26
|
+
"test:workflow": "tsx scripts/workflow-verification.ts",
|
|
27
|
+
"test:manual": "echo 'See docs/manual-test-checklist.md for manual testing steps'",
|
|
29
28
|
"clean": "backstage-cli package clean",
|
|
30
29
|
"start": "nodemon --",
|
|
31
30
|
"dev": "ts-node src/index.ts",
|
|
32
|
-
"dev:help": "ts-node src/index.ts --help"
|
|
33
|
-
"test:local": "npm run build && node bin/translations-cli"
|
|
31
|
+
"dev:help": "ts-node src/index.ts --help"
|
|
34
32
|
},
|
|
35
33
|
"bin": "bin/translations-cli",
|
|
36
34
|
"files": [
|
|
@@ -59,7 +57,6 @@
|
|
|
59
57
|
"chalk": "^4.1.2",
|
|
60
58
|
"commander": "^12.0.0",
|
|
61
59
|
"ts-node": "^10.9.2",
|
|
62
|
-
"tsx": "^4.21.0"
|
|
63
|
-
"vitest": "^1.0.0"
|
|
60
|
+
"tsx": "^4.21.0"
|
|
64
61
|
}
|
|
65
62
|
}
|