occam-open-cli 5.0.163 → 5.0.164

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.
@@ -21,8 +21,10 @@ function publishAction(argument, dryRun, logLevel) {
21
21
  publishOperation,
22
22
  updateMetaJSONFileVersionOperation
23
23
  ],
24
+ success = false,
24
25
  context = {
25
26
  dryRun,
27
+ success,
26
28
  logLevel,
27
29
  releaseName
28
30
  };
@@ -9,6 +9,12 @@ function packReleaseOperation(proceed, abort, context) {
9
9
 
10
10
  release = Release.fromProject(project);
11
11
 
12
+ if (release === null) {
13
+ abort();
14
+
15
+ return;
16
+ }
17
+
12
18
  const releaseJSON = release.toJSON();
13
19
 
14
20
  release = releaseJSON; ///
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "occam-open-cli",
3
3
  "author": "James Smith",
4
- "version": "5.0.163",
4
+ "version": "5.0.164",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/occam-open-cli",
7
7
  "description": "Occam's command line package management tool.",