@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +9 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @red-hat-developer-hub/translations-cli
2
2
 
3
+ ## 0.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 80e6605: Replaced vitest with backstage-cli package test command
8
+
3
9
  ## 0.0.1
4
10
 
5
11
  ### Patch Changes
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.1",
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": "vitest run",
23
- "test:watch": "vitest",
24
- "test:quick": "./test/quick-test.sh",
25
- "test:integration": "./test/integration-test.sh",
26
- "test:real-repo": "./test/real-repo-test.sh",
27
- "test:workflow": "tsx test/workflow-verification.ts",
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
  }