@razorwind/nx 0.0.24 → 0.0.26

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,26 @@
2
2
 
3
3
  # Changelog for Razorwind - Nx
4
4
 
5
+ ## [0.0.26](https://github.com/storm-software/razorwind/releases/tag/nx%400.0.26) (08/07/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **core** to **v0.0.31**
10
+
11
+ ## [0.0.25](https://github.com/storm-software/razorwind/releases/tag/nx%400.0.25) (08/07/2026)
12
+
13
+ ### Bug Fixes
14
+
15
+ - **nx:** Resolve issue specifying `inputs` in Nx plugin ([354d0b1](https://github.com/storm-software/razorwind/commit/354d0b1))
16
+
17
+ ### Features
18
+
19
+ - **sandpack:** Added the Sandpack theme and usage generator plugin package ([e668580](https://github.com/storm-software/razorwind/commit/e668580))
20
+
21
+ ### Updated Dependencies
22
+
23
+ - Updated **core** to **v0.0.30**
24
+
5
25
  ## [0.0.24](https://github.com/storm-software/razorwind/releases/tag/nx%400.0.24) (08/06/2026)
6
26
 
7
27
  ### Miscellaneous
@@ -102,9 +102,9 @@ const createNodesV2 = ["**/razorwind.config.ts", async (configFiles, options, co
102
102
  const targetName = options?.targetName || Object.keys(targets ?? {}).find((name) => targets[name]?.executor === "@razorwind/nx:generate") || "generate";
103
103
  targets[targetName] = (0, defu.default)(targets[targetName], {
104
104
  inputs: [
105
- configFile,
106
- ...((0, _stryke_type_checks_is_set_string.isSetString)(options?.componentsPath) ? [options.componentsPath] : options?.componentsPath) ?? [],
107
- ...((0, _stryke_type_checks_is_set_string.isSetString)(options?.tokensPath) ? [options.tokensPath] : options?.tokensPath) ?? []
105
+ (0, _stryke_path_join_paths.joinPaths)("{workspaceRoot}", configFile),
106
+ ...(((0, _stryke_type_checks_is_set_string.isSetString)(options?.componentsPath) ? [options.componentsPath] : options?.componentsPath) ?? []).map((path) => (0, _stryke_path_join_paths.joinPaths)("{workspaceRoot}", path)),
107
+ ...(((0, _stryke_type_checks_is_set_string.isSetString)(options?.tokensPath) ? [options.tokensPath] : options?.tokensPath) ?? []).map((path) => (0, _stryke_path_join_paths.joinPaths)("{workspaceRoot}", path))
108
108
  ],
109
109
  executor: GENERATE_EXECUTOR,
110
110
  dependsOn: [`^${targetName}`],
@@ -73,9 +73,9 @@ const createNodesV2 = ["**/razorwind.config.ts", async (configFiles, options, co
73
73
  const targetName = options?.targetName || Object.keys(targets ?? {}).find((name) => targets[name]?.executor === "@razorwind/nx:generate") || "generate";
74
74
  targets[targetName] = defu(targets[targetName], {
75
75
  inputs: [
76
- configFile,
77
- ...(isSetString(options?.componentsPath) ? [options.componentsPath] : options?.componentsPath) ?? [],
78
- ...(isSetString(options?.tokensPath) ? [options.tokensPath] : options?.tokensPath) ?? []
76
+ joinPaths("{workspaceRoot}", configFile),
77
+ ...((isSetString(options?.componentsPath) ? [options.componentsPath] : options?.componentsPath) ?? []).map((path) => joinPaths("{workspaceRoot}", path)),
78
+ ...((isSetString(options?.tokensPath) ? [options.tokensPath] : options?.tokensPath) ?? []).map((path) => joinPaths("{workspaceRoot}", path))
79
79
  ],
80
80
  executor: GENERATE_EXECUTOR,
81
81
  dependsOn: [`^${targetName}`],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razorwind/nx",
3
- "version": "0.0.24",
3
+ "version": "0.0.26",
4
4
  "description": "A Nx plugin to support Razorwind development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -111,9 +111,9 @@
111
111
  "typings": "dist/index.d.ts",
112
112
  "dependencies": {
113
113
  "@nx/devkit": "23.1.0",
114
- "@power-plant/core": "^0.0.75",
115
- "@razorwind/core": "^0.0.29",
116
- "@storm-software/workspace-tools": "^1.296.94",
114
+ "@power-plant/core": "^0.0.81",
115
+ "@razorwind/core": "^0.0.31",
116
+ "@storm-software/workspace-tools": "^1.296.95",
117
117
  "@stryke/hash": "^0.13.56",
118
118
  "@stryke/path": "^0.29.29",
119
119
  "@stryke/string-format": "^0.17.44",
@@ -124,8 +124,8 @@
124
124
  "untyped": "^2.0.0"
125
125
  },
126
126
  "devDependencies": {
127
- "@powerlines/plugin-tsdown": "^0.1.589",
128
- "@powerlines/plugin-untyped": "^0.2.603",
127
+ "@powerlines/plugin-tsdown": "^0.1.591",
128
+ "@powerlines/plugin-untyped": "^0.2.605",
129
129
  "@types/node": "^25.9.5",
130
130
  "eslint-flat-config-utils": "^3.2.0",
131
131
  "jsonc-eslint-parser": "^3.2.0"
@@ -134,5 +134,5 @@
134
134
  "publishConfig": { "access": "public" },
135
135
  "executors": "./executors.json",
136
136
  "generators": "./generators.json",
137
- "gitHead": "a861c6938501ed645ccdcd3970fc1164d110b4ed"
137
+ "gitHead": "e5f1a6ed40a0cd566735910851df15a8a1647116"
138
138
  }