@storm-software/config 1.124.0 → 1.124.1
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 +7 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/schemas/storm-workspace.schema.json +8 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.124.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.124.0) (2025-06-20)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **config:** Update URL to Storm Workspace Configuration JSON schema file
|
|
10
|
+
([8169f4614](https://github.com/storm-software/storm-ops/commit/8169f4614))
|
|
11
|
+
|
|
5
12
|
## [1.123.2](https://github.com/storm-software/storm-ops/releases/tag/config%401.123.2) (2025-06-20)
|
|
6
13
|
|
|
7
14
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Configuration management tools and schemas for Storm Software projects, providing a standardized approach to handle project settings and presets.",
|
|
6
6
|
"repository": {
|
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo.",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
6
6
|
"$schema": {
|
|
7
|
-
"description": "The URL to the JSON schema file that describes the Storm configuration file",
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"default": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"type": "null"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
7
|
+
"description": "The URL or file path to the JSON schema file that describes the Storm configuration file",
|
|
8
|
+
"default": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
|
|
9
|
+
"type": "string"
|
|
17
10
|
},
|
|
18
11
|
"extends": {
|
|
19
12
|
"description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
|
|
@@ -1577,6 +1570,7 @@
|
|
|
1577
1570
|
}
|
|
1578
1571
|
},
|
|
1579
1572
|
"required": [
|
|
1573
|
+
"$schema",
|
|
1580
1574
|
"license",
|
|
1581
1575
|
"branch",
|
|
1582
1576
|
"owner",
|
|
@@ -1598,5 +1592,7 @@
|
|
|
1598
1592
|
"colors",
|
|
1599
1593
|
"extensions"
|
|
1600
1594
|
],
|
|
1601
|
-
"additionalProperties": false
|
|
1595
|
+
"additionalProperties": false,
|
|
1596
|
+
"$id": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
|
|
1597
|
+
"title": "Storm Workspace Configuration JSON Schema"
|
|
1602
1598
|
}
|