Skip to content

Commit 195e1de

Browse files
author
Willow P.
committed
fix: ensure ps-list is included in production build
1 parent 6a6ec06 commit 195e1de

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
### [v3.3.2](https://github.com/drizzy/code-make/releases/tag/v3.3.2)
4+
5+
> 17 May 2025
6+
7+
### Fixes
8+
9+
- Fixed missing `ps-list` in production build by moving it from `devDependencies` to `dependencies`
10+
311
### [v3.3.1](https://github.com/drizzy/code-make/releases/tag/v3.3.1)
412

513
> 16 May 2025

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "code-make",
33
"displayName": "Code Make",
44
"description": "Simplify C, C++, Go, and Java project creation and compilation with Make.",
5-
"version": "3.3.1",
5+
"version": "3.3.2",
66
"publisher": "drizzy",
77
"license": "MIT",
88
"icon": "icon/makefile.png",
@@ -90,7 +90,9 @@
9090
"eslint": "^8.54.0",
9191
"glob": "^11.0.1",
9292
"lodash": "^4.17.21",
93-
"ps-list": "^8.1.1",
9493
"typescript": "^5.3.2"
94+
},
95+
"dependencies": {
96+
"ps-list": "^8.1.1"
9597
}
9698
}

src/manager/ProcessManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class ProcessManager {
4848
this.toggleProcessButtons(isRunning);
4949
this._isProcessRunning = isRunning;
5050
}
51-
}, 500);
51+
}, 1000);
5252
}
5353

5454
private toggleProcessButtons(isRunning: boolean) {

0 commit comments

Comments
 (0)