@capraconsulting/cals-cli 3.13.0 → 3.14.0

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 (49) hide show
  1. package/README.md +4 -16
  2. package/lib/cals-cli.mjs +599 -2461
  3. package/lib/cals-cli.mjs.map +1 -1
  4. package/lib/cli/reporter.d.ts +5 -6
  5. package/lib/cli/util.d.ts +1 -6
  6. package/lib/config.d.ts +0 -2
  7. package/lib/definition/index.d.ts +1 -1
  8. package/lib/definition/types.d.ts +0 -52
  9. package/lib/github/index.d.ts +0 -2
  10. package/lib/github/service.d.ts +2 -67
  11. package/lib/github/types.d.ts +0 -63
  12. package/lib/github/util.d.ts +0 -1
  13. package/lib/index.d.ts +0 -10
  14. package/lib/index.es.js +11 -1391
  15. package/lib/index.es.js.map +1 -1
  16. package/lib/index.js +11 -1391
  17. package/lib/index.js.map +1 -1
  18. package/package.json +10 -23
  19. package/lib/cli/commands/definition/dump-setup.d.ts +0 -3
  20. package/lib/cli/commands/definition/util.d.ts +0 -6
  21. package/lib/cli/commands/definition/util.test.d.ts +0 -1
  22. package/lib/cli/commands/definition/validate.d.ts +0 -3
  23. package/lib/cli/commands/definition.d.ts +0 -3
  24. package/lib/cli/commands/delete-cache.d.ts +0 -3
  25. package/lib/cli/commands/getting-started.d.ts +0 -3
  26. package/lib/cli/commands/github/analyze-directory.d.ts +0 -3
  27. package/lib/cli/commands/github/configure.d.ts +0 -3
  28. package/lib/cli/commands/github/list-pull-requests-stats.d.ts +0 -3
  29. package/lib/cli/commands/github/list-webhooks.d.ts +0 -3
  30. package/lib/cli/commands/github/util.d.ts +0 -3
  31. package/lib/cli/commands/snyk/report.d.ts +0 -3
  32. package/lib/cli/commands/snyk/set-token.d.ts +0 -3
  33. package/lib/cli/commands/snyk/sync.d.ts +0 -3
  34. package/lib/cli/commands/snyk.d.ts +0 -3
  35. package/lib/github/changeset/changeset.d.ts +0 -21
  36. package/lib/github/changeset/execute.d.ts +0 -10
  37. package/lib/github/changeset/types.d.ts +0 -88
  38. package/lib/snyk/index.d.ts +0 -3
  39. package/lib/snyk/service.d.ts +0 -30
  40. package/lib/snyk/token.d.ts +0 -11
  41. package/lib/snyk/types.d.ts +0 -62
  42. package/lib/snyk/util.d.ts +0 -3
  43. package/lib/snyk/util.test.d.ts +0 -1
  44. package/lib/sonarcloud/index.d.ts +0 -3
  45. package/lib/sonarcloud/service.d.ts +0 -33
  46. package/lib/sonarcloud/token.d.ts +0 -8
  47. package/lib/testing/executor.d.ts +0 -25
  48. package/lib/testing/index.d.ts +0 -2
  49. package/lib/testing/lib.d.ts +0 -63
package/README.md CHANGED
@@ -13,26 +13,14 @@ It is recommended to use `npx` over global install to ensure you
13
13
  always run the latest version. If you install it globally remember
14
14
  to update it before running.
15
15
 
16
- ## Building locally
16
+ ## Build
17
17
 
18
- Clone this repo.
18
+ Build and verify:
19
19
 
20
- Use NPM to link this repo as a global package:
21
-
22
- ```bash
23
- npm install
24
- npm run build
25
- npm link
20
+ ```sh
21
+ $ make # or "make build"
26
22
  ```
27
23
 
28
- Run the cli from any terminal/folder:
29
-
30
- ```bash
31
- cals
32
- ```
33
-
34
- Rebuild using `npm run build`.
35
-
36
24
  ## Contributing
37
25
 
38
26
  This project uses [semantic release](https://semantic-release.gitbook.io/semantic-release/)