lakutata 0.1.14 → 0.1.15

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.
Files changed (2) hide show
  1. package/CLI.js +2 -2
  2. package/package.json +1 -1
package/CLI.js CHANGED
@@ -61438,7 +61438,7 @@ var CommandLineController = class extends _chunkVZLDHNU6js.Controller {
61438
61438
  const creator = await this.app.get(Create, { options: await this.completer.complete(inp.options) });
61439
61439
  await creator.exec();
61440
61440
  }
61441
- async upgrade(inp) {
61441
+ async upgrade() {
61442
61442
  const upgrade = await this.app.get(Upgrade, this.context);
61443
61443
  upgrade.echoCurrentVersion();
61444
61444
  const newVersion = await upgrade.checkUpdate();
@@ -61446,7 +61446,7 @@ var CommandLineController = class extends _chunkVZLDHNU6js.Controller {
61446
61446
  return upgrade.echoNoUpdateAvailable();
61447
61447
  await upgrade.upgradeInstall(newVersion);
61448
61448
  }
61449
- async info(inp) {
61449
+ async info() {
61450
61450
  const info = await this.app.get(Info, this.context);
61451
61451
  info.lines.forEach((line) => console.info(line));
61452
61452
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lakutata",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "An IoC-based universal application framework.",
5
5
  "main": "./Lakutata.js",
6
6
  "types": "./Lakutata.d.ts",