@koobiq/cli 16.0.0-beta.9 → 17.0.0-beta.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/README.md +8 -0
- package/dist/cli.js +17 -8
- package/dist/cli.js.map +1 -0
- package/dist/templates/footer.hbs +11 -0
- package/dist/templates/header.hbs +25 -0
- package/package.json +1 -1
- /package/{templates/changelog-commit-template.hbs → dist/templates/commit.hbs} +0 -0
- /package/{templates/changelog-root-template.hbs → dist/templates/template.hbs} +0 -0
package/README.md
CHANGED
|
@@ -16,10 +16,18 @@ npx koobiq-cli stage-commit
|
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
### Publish Gitlab CI
|
|
19
|
+
The overall flow indicates a CI release process involving packages publishing, version handling,
|
|
20
|
+
release note extraction and notification via configured communication channel.
|
|
21
|
+
|
|
19
22
|
```bash
|
|
20
23
|
npx koobiq-cli publish-ci-gitlab
|
|
21
24
|
```
|
|
22
25
|
|
|
26
|
+
If package info isn't provided in changelog, use `--package-scope` param to add extra information about released package.
|
|
27
|
+
```bash
|
|
28
|
+
npx koobiq-cli --package-scope \"Library name\" publish-ci-gitlab
|
|
29
|
+
```
|
|
30
|
+
|
|
23
31
|
## Use npm pack to test packages locally
|
|
24
32
|
|
|
25
33
|
Build Package
|