@storm-software/workspace-tools 1.90.0 → 1.90.1
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/CHANGELOG.md +7 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/npm-publish/executor.js +2 -2
package/package.json
CHANGED
|
@@ -128,12 +128,12 @@ Note: If this is the first time this package has been published to NPM, this can
|
|
|
128
128
|
return new Promise((resolve) => resolve({ success: true }));
|
|
129
129
|
} catch (err) {
|
|
130
130
|
console.log("");
|
|
131
|
-
console.error("An error occured
|
|
131
|
+
console.error("An error occured adding dist-tags.");
|
|
132
132
|
console.error(err);
|
|
133
133
|
console.log("");
|
|
134
134
|
try {
|
|
135
135
|
console.warn(
|
|
136
|
-
`An error occurred while
|
|
136
|
+
`An error occurred while adding dist-tags
|
|
137
137
|
${err}
|
|
138
138
|
|
|
139
139
|
Note: If this is the first time this package has been published to NPM, this can be ignored.`
|