@storm-software/workspace-tools 1.5.6 → 1.5.8

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.5.7](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.6...workspace-tools-v1.5.7) (2023-11-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolve issue with preset CI action's env config ([e6f7b8a](https://github.com/storm-software/storm-ops/commit/e6f7b8a81be6197d9f5d0fe71dafabf90189c669))
7
+
8
+ ## [1.5.6](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.5...workspace-tools-v1.5.6) (2023-11-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Resolved issue with README template in preset ([5824423](https://github.com/storm-software/storm-ops/commit/5824423e787aa2bec7e94cca89105a2bee2828f4))
14
+
1
15
  ## [1.5.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.4...workspace-tools-v1.5.5) (2023-11-08)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.5.6",
3
+ "version": "1.5.8",
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": [
@@ -15,17 +15,15 @@ on:
15
15
 
16
16
  env:
17
17
  CI: true
18
- NX_DAEMON: false
19
18
  NX_VERBOSE_LOGGING: true
20
19
  STORM_REPO_WORKER: stormie-bot
21
- STORM_REPO_URL: ${{ github.repositoryUrl }}
20
+ STORM_REPO_URL: https://github.com/<%= organization %>/<%= name %>
22
21
  STORM_REPO_ROOT: ${{ github.workspace }}
23
22
  NX_BASE: ${{ github.base_ref }}
24
23
  NX_HEAD: ${{ github.head_ref }}
25
24
  GITHUB_ACTOR: ${{ github.actor }}
26
25
  GITHUB_TOKEN: ${{ github.token }}
27
26
  NPM_TOKEN: ${{ secrets.STORMIE_NPM_TOKEN }}
28
- NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
29
27
 
30
28
  jobs:
31
29
  build-and-release:
@@ -81,11 +79,13 @@ jobs:
81
79
  - name: Release Library Version Updates
82
80
  run: pnpm release --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }}
83
81
  env:
82
+ GITHUB_ACTOR: ${{ env.GITHUB_ACTOR }}
84
83
  GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
85
84
  GH_TOKEN: ${{ env.GITHUB_TOKEN }}
86
85
  NPM_TOKEN: ${{ env.NPM_TOKEN }}
87
86
  NPM_AUTH_TOKEN: ${{ env.NPM_TOKEN }}
88
87
  NODE_AUTH_TOKEN: ${{ env.NPM_TOKEN }}
89
- STORM_REPO_ROOT: ${{ env.STORM_REPO_ROOT }}
90
- STORM_REPO_URL: ${{ env.STORM_REPO_URL }}
88
+ STORM_REPO_WORKER: ${{ env.STORM_REPO_WORKER }}
89
+ STORM_REPO_ROOT: ${{ github.workspace }}
90
+ STORM_REPO_URL: ${{ github.repositoryUrl }}
91
91
  TAG: ${{ inputs.tag }}
@@ -7,6 +7,7 @@ const jestConfig = require("@storm-software/linting-tools/eslint/jest");
7
7
  const jsonConfig = require("@storm-software/linting-tools/eslint/json");
8
8
  const reactConfig = require("@storm-software/linting-tools/eslint/react");
9
9
  const nextConfig = require("@storm-software/linting-tools/eslint/next");
10
+
10
11
  const js = require("@eslint/js");
11
12
  const compat = new FlatCompat({
12
13
  baseDirectory: __dirname,
@@ -80,7 +80,8 @@
80
80
  "type": "boolean",
81
81
  "description": "Should distributed caching with Nx Cloud be enabled for the workspace?",
82
82
  "default": false,
83
- "x-prompt": "Should distributed caching with Nx Cloud be enabled for the workspace?"
83
+ "x-prompt": "Should distributed caching with Nx Cloud be enabled for the workspace?",
84
+ "hidden": true
84
85
  },
85
86
  "mode": {
86
87
  "type": "string",