@storm-software/workspace-tools 1.56.3 → 1.56.5
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 +4 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/npm-publish/executor.js +1 -1
package/package.json
CHANGED
|
@@ -19819,7 +19819,7 @@ function runExecutor(options, context) {
|
|
|
19819
19819
|
npmPublishCommandSegments.push("--provenance --access public");
|
|
19820
19820
|
const registry = options.registry ?? (0, import_node_child_process.execSync)("npm config get registry").toString().trim();
|
|
19821
19821
|
const tag = options.tag ?? (0, import_node_child_process.execSync)("npm config get tag").toString().trim();
|
|
19822
|
-
if (!isDryRun && !options.firstRelease) {
|
|
19822
|
+
if (!isDryRun && !options.firstRelease && projectPackageJson.version !== "1.0.1") {
|
|
19823
19823
|
const currentVersion = projectPackageJson.version;
|
|
19824
19824
|
try {
|
|
19825
19825
|
const result = (0, import_node_child_process.execSync)(npmViewCommandSegments.join(" "), {
|