Skip to content

Commit 3e09d85

Browse files
changes
1 parent 80d03c9 commit 3e09d85

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codebolt/codeboltjs",
3-
"version": "1.1.55",
3+
"version": "1.1.56",
44
"description": "",
55
"keywords": [],
66
"author": "",

src/modules/project.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import cbws from './websocket';
2-
import {GetProjectPathResponse } from '@codebolt/types';
2+
import { GetProjectPathResponse } from '@codebolt/types';
33
/**
44
* A module for interacting with project settings and paths.
55
*/
@@ -29,6 +29,11 @@ const cbproject = {
2929
}
3030
});
3131
});
32-
}
32+
},
33+
runProject: () => {
34+
cbws.getWebsocket.send(JSON.stringify({
35+
"type": "runProject"
36+
}));
37+
},
3338
};
3439
export default cbproject

0 commit comments

Comments
 (0)