create-claude-workspace 2.3.26 → 2.3.27

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.
@@ -83,8 +83,7 @@ export function resolveCLIBinary(cli) {
83
83
  }
84
84
  /** Add the parent directory of a binary to process.env.PATH */
85
85
  function addToProcessPath(binaryPath) {
86
- const { dirname } = require('node:path');
87
- const dir = dirname(binaryPath);
86
+ const dir = resolve(binaryPath, '..');
88
87
  const sep = process.platform === 'win32' ? ';' : ':';
89
88
  const currentPath = process.env.PATH ?? '';
90
89
  if (!currentPath.split(sep).includes(dir)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-workspace",
3
- "version": "2.3.26",
3
+ "version": "2.3.27",
4
4
  "author": "",
5
5
  "repository": {
6
6
  "type": "git",