@powerlines/nx 0.10.59 → 0.10.60
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
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Powerlines - Nx
|
|
4
4
|
|
|
5
|
+
## [0.10.59](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.59) (12/08/2025)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **powerlines** to **v0.30.10**
|
|
10
|
+
|
|
5
11
|
## [0.10.58](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.58) (12/06/2025)
|
|
6
12
|
|
|
7
13
|
### Updated Dependencies
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface SyncGeneratorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Out of Sync Message
|
|
8
|
+
*
|
|
9
|
+
* The message to display when the project is out of sync with the legal-message.txt file
|
|
10
|
+
*
|
|
11
|
+
* @default "The legal-message.txt file needs to be created"
|
|
12
|
+
*/
|
|
13
|
+
outOfSyncMessage?: string,
|
|
14
|
+
}
|
|
15
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Sync Generator",
|
|
4
|
+
"description": "A type definition for the Powerlines - Sync generator's options",
|
|
5
|
+
"required": [],
|
|
6
|
+
"properties": {
|
|
7
|
+
"outOfSyncMessage": {
|
|
8
|
+
"title": "Out of Sync Message",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "The message to display when the project is out of sync with the legal-message.txt file",
|
|
11
|
+
"id": "#outOfSyncMessage",
|
|
12
|
+
"default": "The legal-message.txt file needs to be created"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"type": "object",
|
|
16
|
+
"default": {
|
|
17
|
+
"outOfSyncMessage": "The legal-message.txt file needs to be created"
|
|
18
|
+
}
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/nx",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.60",
|
|
4
4
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"defu": "^6.1.4",
|
|
197
197
|
"jiti": "^2.6.1",
|
|
198
198
|
"nx": "^22.1.3",
|
|
199
|
-
"powerlines": "^0.30.
|
|
199
|
+
"powerlines": "^0.30.11"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
202
|
"@nx/workspace": "^22.1.3",
|
|
@@ -210,5 +210,5 @@
|
|
|
210
210
|
"publishConfig": { "access": "public" },
|
|
211
211
|
"executors": "./executors.json",
|
|
212
212
|
"generators": "./generators.json",
|
|
213
|
-
"gitHead": "
|
|
213
|
+
"gitHead": "1613e8b201d74470d5c3275e2049374c231287af"
|
|
214
214
|
}
|