@storm-software/config-tools 1.2.1 → 1.2.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,10 @@
1
+ ## [1.2.1](https://github.com/storm-software/storm-ops/compare/config-tools-v1.2.0...config-tools-v1.2.1) (2023-12-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **config-tools:** Added esm and cjs as build options ([5fda41e](https://github.com/storm-software/storm-ops/commit/5fda41e2d589d8793b106a4a4ad1fc22b14fd459))
7
+
1
8
  # [1.2.0](https://github.com/storm-software/storm-ops/compare/config-tools-v1.1.3...config-tools-v1.2.0) (2023-12-02)
2
9
 
3
10
 
package/index.cjs CHANGED
@@ -94,7 +94,7 @@ var import_typeschema2 = require("@decs/typeschema");
94
94
  var import_typeschema = require("@decs/typeschema");
95
95
 
96
96
  // packages/config-tools/src/schema.ts
97
- var z = __toESM(require("zod"), 1);
97
+ var z = __toESM(require("zod"));
98
98
  var ColorConfigSchema = z.object({
99
99
  primary: z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0ea5e9").describe("The primary color of the workspace"),
100
100
  background: z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d232a").describe("The background color of the workspace"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "private": false,
5
5
  "description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
6
6
  "repository": {
@@ -8,7 +8,6 @@
8
8
  "url": "https://github.com/storm-software/storm-ops.git",
9
9
  "directory": "packages/config-tools"
10
10
  },
11
- "type": "module",
12
11
  "dependencies": {
13
12
  "@decs/typeschema": "^0.12.1",
14
13
  "cosmiconfig": "^9.0.0",