@nilvn/core 0.16.2 → 0.16.3
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/dist/package.js +4 -1
- package/package.json +1 -1
package/dist/package.js
CHANGED
|
@@ -57,7 +57,10 @@ export function packageActors(project) {
|
|
|
57
57
|
* single-file / asset-ZIP shape) plus the manifest fields the shells used to bake
|
|
58
58
|
* into their bootstraps. Pure, zero-I/O. */
|
|
59
59
|
export function buildScriptPackage(project, opts) {
|
|
60
|
-
|
|
60
|
+
// Forward the command registry: without it the chunks serialize plugin commands
|
|
61
|
+
// against the built-ins alone, and a positional argument (`[move yuki …]`)
|
|
62
|
+
// degrades to `id=yuki`, which the plugin never reads.
|
|
63
|
+
const plan = buildChunkedExport(project, { engine: opts.engine, groups: opts.groups, ...(opts.commands ? { commands: opts.commands } : {}) });
|
|
61
64
|
const title = opts.title ?? (project.meta.title || 'NilVN');
|
|
62
65
|
const lang = (opts.lang ?? project.meta.defaultLang);
|
|
63
66
|
const manifest = {
|
package/package.json
CHANGED