@@ -21,64 +21,10 @@ Flags:
21
21
- ` --local ` . Enable building packages with dependencies to their pack files (instead of versions).
22
22
- ` --snapshot ` . Enable building packages with dependencies to their snapshot repos (instead of versions).
23
23
24
- ## changelog
25
-
26
- Creates a changelog draft in GitHub releases.
27
-
28
- Flags:
29
-
30
- - ` --from=<git-ref> ` . ** [ Required] ** The git ref (SHA, tag or ref) to start the CHANGELOG at.
31
- - ` --to=<tag> ` . ** [ Required] ** The git ref (tag) to end the CHANGELOG at. This will also be used to name the changelog
32
- on GitHub.
33
- - ` --githubToken=<string> ` . The github token to update the changelog with. If this is not specified, the release notes
34
- will be outputted to stdout.
35
- - ` --githubTokenFile=<path> ` . Reads the githubToken from a file instead of the command line (for CI).
36
- - ` --stdout ` . Skip the whole release note process and output the markdown to stdout instead.
37
-
38
24
## packages
39
25
40
26
Outputs a JSON containing all informations from the package script (main files, repo names, versions, deps, etc).
41
27
42
- ## publish
43
-
44
- Builds and published the packages to npm.
45
-
46
- Flags:
47
-
48
- - ` --tag=<name> ` . Publishes under the npm dist-tag specified.
49
-
50
- ## release
51
-
52
- General version and release manager.
53
-
54
- Usage:
55
-
56
- ``` bash
57
- $ devkit-admin release
58
- ```
59
-
60
- Outputs all the packages, their versions and their hashes. By default, excludes private packages that are only used in
61
- the repo (such as private schematics). With the ` --verbose ` flag will output the private packages as well.
62
-
63
- By adding a command, the ` release ` script will update the version;
64
-
65
- - ` major-beta ` . Set the version of packages to the next beta of the next major.
66
- - ` major-rc ` . Set the version of packages to the next RC of the next major.
67
- - ` major ` . Increment the major version of packages.
68
- - ` minor-beta ` . Set the version of packages to the next beta of the next minor.
69
- - ` minor-rc ` . Set the version of packages to the next RC of the next minor.
70
- - ` minor ` . Increment the minor version of packages.
71
- - ` patch ` . Increment the patch version of packages.
72
-
73
- By default, the release script will increment versions of packages that have changed. Use the ` --force ` flag to change
74
- the version of all packages, even those who haven't changed.
75
-
76
- e.g.
77
-
78
- ``` bash
79
- $ devkit-admin release minor-beta --force
80
- ```
81
-
82
28
## snapshots
83
29
84
30
Create and upload snapshots. This is used in CI.
0 commit comments