We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d03c9 commit 3e09d85Copy full SHA for 3e09d85
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@codebolt/codeboltjs",
3
- "version": "1.1.55",
+ "version": "1.1.56",
4
"description": "",
5
"keywords": [],
6
"author": "",
src/modules/project.ts
@@ -1,5 +1,5 @@
import cbws from './websocket';
-import {GetProjectPathResponse } from '@codebolt/types';
+import { GetProjectPathResponse } from '@codebolt/types';
/**
* A module for interacting with project settings and paths.
*/
@@ -29,6 +29,11 @@ const cbproject = {
29
}
30
});
31
32
- }
+ },
33
+ runProject: () => {
34
+ cbws.getWebsocket.send(JSON.stringify({
35
+ "type": "runProject"
36
+ }));
37
38
};
39
export default cbproject
0 commit comments