We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78f20d commit 96ab6aaCopy full SHA for 96ab6aa
bin/cm.js
@@ -20,6 +20,7 @@ function start() {
20
build,
21
devserver,
22
release,
23
+ unreleased,
24
install,
25
clean,
26
commit,
@@ -267,6 +268,14 @@ function editReleaseNotes(notes) {
267
268
return {head: split[1] + "\n\n", body: split[2]}
269
}
270
271
+function unreleased() {
272
+ for (let pkg of packages) {
273
+ let ver = version(pkg), changes = changelog(pkg, ver)
274
+ if (changes.fix.length || changes.feature.length || changes.breaking.length)
275
+ console.log(pkg.name + ":\n\n", releaseNotes(changes, ver).body)
276
+ }
277
+}
278
+
279
function clean() {
280
for (let pkg of buildPackages)
281
run("rm", ["-rf", "dist"], pkg.dir)
0 commit comments