javascript-solid-server 0.0.148 → 0.0.149
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +5 -1
- package/bin/jss.js +1 -1
- package/package.json +1 -1
|
@@ -351,7 +351,11 @@
|
|
|
351
351
|
"Read(//usr/local/lib/node_modules/gitmark-test/**)",
|
|
352
352
|
"WebFetch(domain:nip98.com)",
|
|
353
353
|
"WebFetch(domain:htmlpreview.github.io)",
|
|
354
|
-
"WebFetch(domain:timbl.solidcommunity.net)"
|
|
354
|
+
"WebFetch(domain:timbl.solidcommunity.net)",
|
|
355
|
+
"Read(//home/melvin/remote/github.com/solid-helper/core/**)",
|
|
356
|
+
"Bash(curl -s https://www.gnu.org/licenses/agpl-3.0.txt)",
|
|
357
|
+
"Bash(cat LICENSE.full)",
|
|
358
|
+
"Bash(rm LICENSE.full)"
|
|
355
359
|
]
|
|
356
360
|
}
|
|
357
361
|
}
|
package/bin/jss.js
CHANGED
|
@@ -327,7 +327,7 @@ const inviteCmd = program
|
|
|
327
327
|
inviteCmd
|
|
328
328
|
.command('create')
|
|
329
329
|
.description('Create a new invite code')
|
|
330
|
-
.option('-u, --uses <number>', 'Maximum uses (default: 1)', parseInt, 1)
|
|
330
|
+
.option('-u, --uses <number>', 'Maximum uses (default: 1)', (v) => parseInt(v, 10), 1)
|
|
331
331
|
.option('-n, --note <text>', 'Optional note/description')
|
|
332
332
|
.option('-r, --root <path>', 'Data directory')
|
|
333
333
|
.action(async (options) => {
|