@storm-software/workspace-tools 1.34.0 → 1.34.2

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.34.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.34.0...workspace-tools-v1.34.1) (2023-12-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **config-tools:** Resolved export issue in type declarations ([9125a40](https://github.com/storm-software/storm-ops/commit/9125a40607db1f58351cd9ef12e86f62b234d753))
7
+
8
+ # [1.34.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.33.1...workspace-tools-v1.34.0) (2023-12-22)
9
+
10
+
11
+ ### Features
12
+
13
+ * **workspace-tools:** Added `design-tokens` generator ([af49878](https://github.com/storm-software/storm-ops/commit/af498784bc6446974c141ebb6206749076e2a6b3))
14
+
1
15
  ## [1.33.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.33.0...workspace-tools-v1.33.1) (2023-12-22)
2
16
 
3
17
 
package/index.js CHANGED
@@ -109976,7 +109976,7 @@ var ColorConfigSchema = objectType({
109976
109976
  fatal: stringType().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7d1a1a").describe("The fatal color of the workspace")
109977
109977
  }).describe("Colors used for various workspace elements");
109978
109978
  var StormConfigSchema = objectType({
109979
- name: stringType().trim().toLowerCase().describe("The name of the package"),
109979
+ name: stringType().trim().toLowerCase().default("storm").describe("The name of the package"),
109980
109980
  namespace: stringType().trim().toLowerCase().default("storm-software").describe("The namespace of the package"),
109981
109981
  organization: stringType().trim().default("storm-software").describe("The organization of the workspace"),
109982
109982
  repository: stringType().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -110029,7 +110029,7 @@ var DefaultColorConfig = {
110029
110029
  fatal: "#7d1a1a"
110030
110030
  };
110031
110031
  var DefaultStormConfig = {
110032
- name: "storm-workspace",
110032
+ name: "storm",
110033
110033
  namespace: "storm-software",
110034
110034
  license: "Apache License 2.0",
110035
110035
  homepage: "https://stormsoftware.org",
@@ -110069,19 +110069,18 @@ var getDefaultConfig = (config = {}, root) => {
110069
110069
  packageJson.homepage && (homepage = packageJson.homepage);
110070
110070
  }
110071
110071
  }
110072
- return StormConfigSchema.parse(
110073
- Object.assign(config, {
110074
- ...DefaultStormConfig,
110075
- colors: { ...DefaultColorConfig },
110076
- workspaceRoot,
110077
- name,
110078
- namespace,
110079
- repository,
110080
- license: license ?? DefaultStormConfig.license,
110081
- homepage: homepage ?? DefaultStormConfig.homepage,
110082
- extensions: {}
110083
- })
110084
- );
110072
+ return StormConfigSchema.parse({
110073
+ ...config,
110074
+ ...DefaultStormConfig,
110075
+ colors: { ...config.colors, ...DefaultColorConfig },
110076
+ workspaceRoot,
110077
+ name,
110078
+ namespace,
110079
+ repository,
110080
+ license: license ?? DefaultStormConfig.license,
110081
+ homepage: homepage ?? DefaultStormConfig.homepage,
110082
+ extensions: {}
110083
+ });
110085
110084
  };
110086
110085
 
110087
110086
  // packages/config-tools/src/utilities/get-log-level.ts