@storm-software/config-tools 1.8.0 → 1.8.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [1.8.0](https://github.com/storm-software/storm-ops/compare/config-tools-v1.7.1...config-tools-v1.8.0) (2023-12-22)
2
+
3
+
4
+ ### Features
5
+
6
+ * **workspace-tools:** Added `design-tokens` generator ([af49878](https://github.com/storm-software/storm-ops/commit/af498784bc6446974c141ebb6206749076e2a6b3))
7
+
1
8
  ## [1.7.1](https://github.com/storm-software/storm-ops/compare/config-tools-v1.7.0...config-tools-v1.7.1) (2023-12-22)
2
9
 
3
10
 
package/declarations.d.ts CHANGED
@@ -23,7 +23,7 @@ export { StormConfig };
23
23
  * @param pathInsideMonorepo - The path inside the monorepo
24
24
  */
25
25
  declare function findWorkspaceRoot(pathInsideMonorepo?: string): string;
26
- export { findWorkspaceRootSync };
26
+ export { findWorkspaceRoot };
27
27
 
28
28
  /**
29
29
  * Find the root of the current monorepo safely (do not throw an error if it cannot be found)
@@ -33,7 +33,7 @@ export { findWorkspaceRootSync };
33
33
  declare function findWorkspaceRootSafe(
34
34
  pathInsideMonorepo?: string
35
35
  ): string | undefined;
36
- export { findWorkspaceRootSafeSync };
36
+ export { findWorkspaceRootSafe };
37
37
 
38
38
  /**
39
39
  * Type-check to determine if `obj` is a `StormError` object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
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": {