@shell-shock/nx 0.0.47 → 0.0.48
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 +10 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Shell Shock - Nx
|
|
4
4
|
|
|
5
|
+
## [0.0.48](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.48) (03/22/2026)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **nx:** List `powerlines` as a peer dependency to allow extra versions ([f54d178](https://github.com/storm-software/shell-shock/commit/f54d178))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **core** to **v0.13.4**
|
|
14
|
+
|
|
5
15
|
## [0.0.47](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.47) (03/21/2026)
|
|
6
16
|
|
|
7
17
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/nx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"description": "A Nx plugin to support Shell Shock development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -78,10 +78,10 @@
|
|
|
78
78
|
"./executors/*/executor.mjs": "./dist/executors/*/executor.mjs"
|
|
79
79
|
},
|
|
80
80
|
"typings": "dist/index.d.ts",
|
|
81
|
-
"peerDependencies": { "nx": ">=22.5.0" },
|
|
81
|
+
"peerDependencies": { "nx": ">=22.5.0", "powerlines": ">=0.42.9" },
|
|
82
82
|
"dependencies": {
|
|
83
83
|
"@nx/devkit": "22.6.1",
|
|
84
|
-
"@shell-shock/core": "^0.13.
|
|
84
|
+
"@shell-shock/core": "^0.13.4",
|
|
85
85
|
"@storm-software/config": "^1.137.0",
|
|
86
86
|
"@storm-software/config-tools": "^1.189.46",
|
|
87
87
|
"@storm-software/workspace-tools": "^1.295.22",
|
|
@@ -91,7 +91,6 @@
|
|
|
91
91
|
"@stryke/path": "^0.27.2",
|
|
92
92
|
"defu": "^6.1.4",
|
|
93
93
|
"jiti": "^2.6.1",
|
|
94
|
-
"powerlines": "^0.42.9",
|
|
95
94
|
"untyped": "^1.5.2"
|
|
96
95
|
},
|
|
97
96
|
"devDependencies": {
|
|
@@ -101,9 +100,10 @@
|
|
|
101
100
|
"@storm-software/testing-tools": "^1.119.121",
|
|
102
101
|
"@types/node": "^25.5.0",
|
|
103
102
|
"eslint-flat-config-utils": "^2.1.4",
|
|
104
|
-
"jsonc-eslint-parser": "^2.4.2"
|
|
103
|
+
"jsonc-eslint-parser": "^2.4.2",
|
|
104
|
+
"powerlines": "^0.42.9"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": { "access": "public" },
|
|
107
107
|
"executors": "./executors.json",
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "bb9aa600d0f9effbd29eabb7bb096267a461059e"
|
|
109
109
|
}
|