Skip to content

Commit b768f28

Browse files
committed
prepare v0.18.4 release
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
1 parent 3fe5b80 commit b768f28

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-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": "coderoad",
3-
"version": "0.18.3",
3+
"version": "0.18.4",
44
"description": "Play interactive coding tutorials in your editor",
55
"keywords": [
66
"tutorial",

src/services/hooks/utils/runCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const runCommands = async (commands: string[] = []): Promise<void> => {
1818
logger(`Command output: ${JSON.stringify(result)}`)
1919
} catch (error: any) {
2020
logger(`Command failed: ${error.message}`)
21-
send({ type: 'COMMAND_FAIL', payload: { process: { ...process, status: 'FAIL' } } })
21+
send({ type: '', payload: { process: { ...process, status: 'FAIL' } } })
2222
return
2323
}
2424
send({ type: 'COMMAND_SUCCESS', payload: { process: { ...process, status: 'SUCCESS' } } })

web-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coderoad-app",
3-
"version": "0.18.3",
3+
"version": "0.18.4",
44
"private": true,
55
"scripts": {
66
"analyze": "source-map-explorer 'build/static/js/*.js'",

0 commit comments

Comments
 (0)