Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into 223-two-way-communica…
Browse files Browse the repository at this point in the history
…tion-between-iframe-and-parent-window
  • Loading branch information
Steve-Mcl committed Apr 16, 2024
2 parents 11e75f4 + c545748 commit 73cbf4a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 2.3.0: Release


#### 2.2.2: Release

- Enable multiplayer by default (#221) @knolleary
Expand Down
2 changes: 1 addition & 1 deletion lib/launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class Launcher {
const child = childProcess.spawn(
npmCommand,
['install', '--omit=dev', '--no-audit', '--no-update-notifier', '--no-fund'],
{ windowsHide: true, cwd: path.join(this.settings.rootDir, this.settings.userDir), env: npmEnv })
{ windowsHide: true, cwd: path.join(this.settings.rootDir, this.settings.userDir), env: npmEnv, shell: true })
child.stdout.on('data', (data) => {
this.logBuffer.add({ level: 'system', msg: '[npm] ' + data })
})
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowfuse/nr-launcher",
"version": "2.2.2",
"version": "2.3.0",
"description": "FlowFuse Launcher for running Node-RED",
"exports": {
"./auditLogger": "./lib/auditLogger/index.js",
Expand Down

0 comments on commit 73cbf4a

Please sign in to comment.