@razorwind/nx 0.0.24 → 0.0.25

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,20 @@
2
2
 
3
3
  # Changelog for Razorwind - Nx
4
4
 
5
+ ## [0.0.25](https://github.com/storm-software/razorwind/releases/tag/nx%400.0.25) (08/07/2026)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **nx:** Resolve issue specifying `inputs` in Nx plugin ([354d0b1](https://github.com/storm-software/razorwind/commit/354d0b1))
10
+
11
+ ### Features
12
+
13
+ - **sandpack:** Added the Sandpack theme and usage generator plugin package ([e668580](https://github.com/storm-software/razorwind/commit/e668580))
14
+
15
+ ### Updated Dependencies
16
+
17
+ - Updated **core** to **v0.0.30**
18
+
5
19
  ## [0.0.24](https://github.com/storm-software/razorwind/releases/tag/nx%400.0.24) (08/06/2026)
6
20
 
7
21
  ### 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.25",
4
4
  "description": "A Nx plugin to support Razorwind development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -111,8 +111,8 @@
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",
114
+ "@power-plant/core": "^0.0.81",
115
+ "@razorwind/core": "^0.0.30",
116
116
  "@storm-software/workspace-tools": "^1.296.94",
117
117
  "@stryke/hash": "^0.13.56",
118
118
  "@stryke/path": "^0.29.29",
@@ -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.590",
128
+ "@powerlines/plugin-untyped": "^0.2.604",
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": "11a6e827627acf51ef0044e366fd9493f2173ec2"
138
138
  }