workon 1.2.0 → 1.2.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
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ <a name="1.2.1"></a>
6
+ ## [1.2.1](https://github.com/israelroldan/workon/compare/v1.2.0...v1.2.1) (2025-08-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Adjust 'claude' command execution in shell mode ([c1bc5dc](https://github.com/israelroldan/workon/commit/c1bc5dc))
12
+
13
+
14
+
5
15
  <a name="1.2.0"></a>
6
16
  # [1.2.0](https://github.com/israelroldan/workon/compare/v1.1.0...v1.2.0) (2025-08-06)
7
17
 
package/cli/open.js CHANGED
@@ -127,7 +127,7 @@ class open extends command {
127
127
  break;
128
128
  case 'claude':
129
129
  if (isShellMode) {
130
- me.shellCommands.push(`claude &`);
130
+ me.shellCommands.push(`claude`);
131
131
  } else {
132
132
  spawn('claude', [], {
133
133
  cwd: environment.project.path.path,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workon",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Work on something great!",
5
5
  "main": "index.js",
6
6
  "scripts": {