occam-open-cli 6.0.219 → 6.0.222

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  const publishOperation = require("../operation/publish"),
4
4
  loadProjectOperation = require("../operation/loadProject"),
5
- packReleaseOperation = require("../operation/packRelease"),
5
+ releaseToJSONOperation = require("../operation/releaseToJSON"),
6
6
  getIdentityTokenOperation = require("../operation/getIdentityToken"),
7
7
  releaseNamePromptOperation = require("../operation/prompt/releaseName"),
8
8
  executeShellCommandsOperation = require("../operation/executeShallCommands"),
@@ -17,7 +17,7 @@ function publishAction(releaseName, tail, follow, verbose, dryRun, logLevel) {
17
17
  getIdentityTokenOperation,
18
18
  releaseNamePromptOperation,
19
19
  loadProjectOperation,
20
- packReleaseOperation,
20
+ releaseToJSONOperation,
21
21
  publishOperation,
22
22
  updateMetaJSONFileVersionOperation,
23
23
  executeShellCommandsOperation
@@ -2,7 +2,7 @@
2
2
 
3
3
  const { Release } = require("occam-entities");
4
4
 
5
- function packReleaseOperation(proceed, abort, context) {
5
+ function releaseToJSONOperation(proceed, abort, context) {
6
6
  let release;
7
7
 
8
8
  const { project } = context;
@@ -26,4 +26,4 @@ function packReleaseOperation(proceed, abort, context) {
26
26
  proceed();
27
27
  }
28
28
 
29
- module.exports = packReleaseOperation;
29
+ module.exports = releaseToJSONOperation;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "occam-open-cli",
3
3
  "author": "James Smith",
4
- "version": "6.0.219",
4
+ "version": "6.0.222",
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.",
@@ -12,8 +12,8 @@
12
12
  "dependencies": {
13
13
  "argumentative": "^2.0.32",
14
14
  "necessary": "^14.0.1",
15
- "occam-entities": "^1.0.164",
16
- "occam-file-system": "^6.0.203"
15
+ "occam-entities": "^1.0.165",
16
+ "occam-file-system": "^6.0.204"
17
17
  },
18
18
  "scripts": {},
19
19
  "bin": {