@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.
- package/README.md +4 -16
- package/lib/cals-cli.mjs +599 -2461
- package/lib/cals-cli.mjs.map +1 -1
- package/lib/cli/reporter.d.ts +5 -6
- package/lib/cli/util.d.ts +1 -6
- package/lib/config.d.ts +0 -2
- package/lib/definition/index.d.ts +1 -1
- package/lib/definition/types.d.ts +0 -52
- package/lib/github/index.d.ts +0 -2
- package/lib/github/service.d.ts +2 -67
- package/lib/github/types.d.ts +0 -63
- package/lib/github/util.d.ts +0 -1
- package/lib/index.d.ts +0 -10
- package/lib/index.es.js +11 -1391
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +11 -1391
- package/lib/index.js.map +1 -1
- package/package.json +10 -23
- package/lib/cli/commands/definition/dump-setup.d.ts +0 -3
- package/lib/cli/commands/definition/util.d.ts +0 -6
- package/lib/cli/commands/definition/util.test.d.ts +0 -1
- package/lib/cli/commands/definition/validate.d.ts +0 -3
- package/lib/cli/commands/definition.d.ts +0 -3
- package/lib/cli/commands/delete-cache.d.ts +0 -3
- package/lib/cli/commands/getting-started.d.ts +0 -3
- package/lib/cli/commands/github/analyze-directory.d.ts +0 -3
- package/lib/cli/commands/github/configure.d.ts +0 -3
- package/lib/cli/commands/github/list-pull-requests-stats.d.ts +0 -3
- package/lib/cli/commands/github/list-webhooks.d.ts +0 -3
- package/lib/cli/commands/github/util.d.ts +0 -3
- package/lib/cli/commands/snyk/report.d.ts +0 -3
- package/lib/cli/commands/snyk/set-token.d.ts +0 -3
- package/lib/cli/commands/snyk/sync.d.ts +0 -3
- package/lib/cli/commands/snyk.d.ts +0 -3
- package/lib/github/changeset/changeset.d.ts +0 -21
- package/lib/github/changeset/execute.d.ts +0 -10
- package/lib/github/changeset/types.d.ts +0 -88
- package/lib/snyk/index.d.ts +0 -3
- package/lib/snyk/service.d.ts +0 -30
- package/lib/snyk/token.d.ts +0 -11
- package/lib/snyk/types.d.ts +0 -62
- package/lib/snyk/util.d.ts +0 -3
- package/lib/snyk/util.test.d.ts +0 -1
- package/lib/sonarcloud/index.d.ts +0 -3
- package/lib/sonarcloud/service.d.ts +0 -33
- package/lib/sonarcloud/token.d.ts +0 -8
- package/lib/testing/executor.d.ts +0 -25
- package/lib/testing/index.d.ts +0 -2
- 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
|
-
##
|
|
16
|
+
## Build
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Build and verify:
|
|
19
19
|
|
|
20
|
-
|
|
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/)
|