Skip to content

Commit 557f384

Browse files
fix(start): use jss's renamed --no-multi-user flag; bump to 0.0.45
jss #512 (shipped in 0.0.202) renamed --multiuser to --multi-user. jspod still spawned jss with --no-multiuser, so single-user startup failed with 'unknown option --no-multiuser' once the jss dep moved to ^0.0.203. All other flags jspod passes are unchanged in jss 0.0.203.
1 parent bed3080 commit 557f384

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export async function start(userOptions = {}) {
247247
if (options.multiuser) {
248248
if (options.auth) jssArgs.push('--idp');
249249
} else {
250-
jssArgs.push('--no-multiuser', '--single-user');
250+
jssArgs.push('--no-multi-user', '--single-user');
251251
if (options.auth) {
252252
jssArgs.push('--idp');
253253
if (!RUNG_1_PASSWORD_FROM_ENV) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspod",
3-
"version": "0.0.44",
3+
"version": "0.0.45",
44
"description": "JavaScript Solid Pod - Just works, batteries included",
55
"type": "module",
66
"main": "./lib/index.js",

0 commit comments

Comments
 (0)