@ship-cli/core 0.1.5 → 0.1.6
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/dist/bin.js +8 -10
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -191232,7 +191232,7 @@ var command = ship.pipe(
|
|
|
191232
191232
|
prCommand
|
|
191233
191233
|
])
|
|
191234
191234
|
);
|
|
191235
|
-
var version = "0.1.
|
|
191235
|
+
var version = "0.1.6" ;
|
|
191236
191236
|
var run9 = run8(command, {
|
|
191237
191237
|
name: "ship",
|
|
191238
191238
|
version
|
|
@@ -194704,19 +194704,17 @@ var make72 = gen2(function* () {
|
|
|
194704
194704
|
new TaskError({ message: "Failed to create project" })
|
|
194705
194705
|
);
|
|
194706
194706
|
}
|
|
194707
|
-
|
|
194707
|
+
const projectId = result.projectId;
|
|
194708
|
+
if (!projectId) {
|
|
194708
194709
|
return yield* fail7(
|
|
194709
|
-
new TaskError({ message: "Project not returned after create" })
|
|
194710
|
+
new TaskError({ message: "Project ID not returned after create" })
|
|
194710
194711
|
);
|
|
194711
194712
|
}
|
|
194712
|
-
|
|
194713
|
-
|
|
194714
|
-
|
|
194715
|
-
|
|
194716
|
-
cause: e2
|
|
194717
|
-
})
|
|
194713
|
+
return new Project({
|
|
194714
|
+
id: projectId,
|
|
194715
|
+
name: input.name,
|
|
194716
|
+
teamId
|
|
194718
194717
|
});
|
|
194719
|
-
return mapProject(project2, teamId);
|
|
194720
194718
|
}),
|
|
194721
194719
|
"Creating project"
|
|
194722
194720
|
);
|