@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.56.3",
3
+ "version": "1.56.5",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -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(" "), {