@storm-software/workspace-tools 1.51.2 → 1.52.0

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,5 @@
1
+
2
+
1
3
  ## 1.51.2 (2024-01-26)
2
4
 
3
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.51.2",
3
+ "version": "1.52.0",
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": [
@@ -32,33 +32,33 @@
32
32
  "main": "./index.js",
33
33
  "typings": "./index.d.ts",
34
34
  "dependencies": {
35
- "@anatine/esbuild-decorators": "^0.2.19",
36
- "@microsoft/api-extractor": "^7.38.3",
35
+ "@anatine/esbuild-decorators": "0.2.19",
36
+ "@microsoft/api-extractor": "7.38.5",
37
37
  "@nx/devkit": "17.2.8",
38
38
  "@nx/esbuild": "17.2.8",
39
- "@nxkit/style-dictionary": "^4.0.0",
40
- "@rollup/plugin-json": "^6.0.1",
39
+ "@nxkit/style-dictionary": "4.0.0",
40
+ "@rollup/plugin-json": "6.1.0",
41
41
  "chalk": "4.1.0",
42
- "decky": "^1.1.1",
43
- "esbuild-plugin-environment": "^0.3.0",
44
- "esbuild-plugin-handlebars": "^1.0.2",
45
- "esbuild-plugin-pino": "^2.1.0",
46
- "fs-extra": "^11.1.1",
47
- "glob": "^10.3.10",
48
- "npm-run-path": "^5.2.0",
49
- "prettier": "3.0.3",
50
- "prettier-plugin-packagejson": "^2.4.9",
51
- "resolve": "^1.22.8",
52
- "resolve-from": "^5.0.0",
53
- "rollup": "^4.5.0",
54
- "rollup-plugin-dts": "^6.1.0",
55
- "style-dictionary": "^3.9.1",
56
- "terser": "^5.24.0",
42
+ "decky": "1.1.1",
43
+ "esbuild-plugin-environment": "0.3.0",
44
+ "esbuild-plugin-handlebars": "1.0.2",
45
+ "esbuild-plugin-pino": "2.1.0",
46
+ "fs-extra": "11.2.0",
47
+ "glob": "10.3.10",
48
+ "npm-run-path": "5.2.0",
49
+ "prettier": "3.2.4",
50
+ "prettier-plugin-packagejson": "2.4.9",
51
+ "resolve": "1.22.8",
52
+ "resolve-from": "5.0.0",
53
+ "rollup": "4.5.2",
54
+ "rollup-plugin-dts": "6.1.0",
55
+ "style-dictionary": "3.9.2",
56
+ "terser": "5.24.0",
57
57
  "tslib": "2.6.2",
58
58
  "tsup": "8.0.0",
59
- "typia": "^5.3.9",
60
- "zod": "^3.22.4",
61
- "zod-to-json-schema": "^3.22.1"
59
+ "typia": "5.4.1",
60
+ "zod": "3.22.4",
61
+ "zod-to-json-schema": "3.22.3"
62
62
  },
63
63
  "publishConfig": {
64
64
  "access": "public"
@@ -3,8 +3,7 @@ import { execSync } from "node:child_process";
3
3
  import { type ProcessEnv, npmRunPathEnv } from "npm-run-path";
4
4
  import type { NpmPublishExecutorSchema } from "./schema";
5
5
  import chalk = require("chalk");
6
-
7
- const LARGE_BUFFER = 1024 * 1000000;
6
+ import { LARGE_BUFFER } from "@storm-software/config-tools";
8
7
 
9
8
  function processEnv() {
10
9
  const env = {
@@ -53,7 +53,7 @@ jobs:
53
53
 
54
54
  # Initializes the CodeQL tools for scanning.
55
55
  - name: Initialize CodeQL
56
- uses: github/codeql-action/init@v2
56
+ uses: github/codeql-action/init@v3
57
57
  with:
58
58
  languages: ${{ matrix.language }}
59
59
  # If you wish to specify custom queries, you can do so here or in a config file.
@@ -66,7 +66,7 @@ jobs:
66
66
  # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
67
67
  # If this step fails, then you should remove it and run the build manually (see below)
68
68
  - name: Autobuild
69
- uses: github/codeql-action/autobuild@v2
69
+ uses: github/codeql-action/autobuild@v3
70
70
 
71
71
  # ℹ️ Command-line programs to run using the OS shell.
72
72
  # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -79,6 +79,6 @@ jobs:
79
79
  # ./location_of_script_within_repo/buildscript.sh
80
80
 
81
81
  - name: Perform CodeQL Analysis
82
- uses: github/codeql-action/analyze@v2
82
+ uses: github/codeql-action/analyze@v3
83
83
  with:
84
84
  category: "/language:${{matrix.language}}"
@@ -17,7 +17,7 @@ jobs:
17
17
  name: 🔒 Lock closed issues and PRs
18
18
  runs-on: ubuntu-latest
19
19
  steps:
20
- - uses: dessant/lock-threads@v4
20
+ - uses: dessant/lock-threads@v5
21
21
  with:
22
22
  github-token: ${{ secrets.GITHUB_TOKEN }}
23
23
  issue-inactive-days: "30"