@conterra/vuln-scan 0.0.29 → 0.0.30
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/README.md +4 -4
- package/dist/add-project.js +15 -15
- package/dist/add-statement.js +14 -14
- package/dist/remove-project.js +15 -15
- package/dist/vuln-scan.js +21 -14
- package/package.json +55 -51
package/README.md
CHANGED
|
@@ -475,9 +475,9 @@ $ ct-vuln-add-project mapapps 4.18.3 4.18.4-SNAPSHOT
|
|
|
475
475
|
Setup:
|
|
476
476
|
|
|
477
477
|
1. Checkout via git
|
|
478
|
-
2. Run `
|
|
478
|
+
2. Run `pnpm install`
|
|
479
479
|
|
|
480
|
-
Run tests (vitest): `
|
|
481
|
-
To run tests once (without watch), use `
|
|
480
|
+
Run tests (vitest): `pnpm test` (watch mode)
|
|
481
|
+
To run tests once (without watch), use `pnpm test run`.
|
|
482
482
|
|
|
483
|
-
Build the project (esbuild): `
|
|
483
|
+
Build the project (esbuild): `pnpm run build` (or `watch`)
|