@tomkapa/tayto 0.4.1 → 0.5.0
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/LICENSE +21 -0
- package/dist/index.js +2 -2
- package/dist/{tui-IXZGQMWN.js → tui-24ZW56Q6.js} +394 -363
- package/dist/tui-24ZW56Q6.js.map +1 -0
- package/package.json +24 -1
- package/dist/tui-IXZGQMWN.js.map +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 tomkapa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.js
CHANGED
|
@@ -2401,7 +2401,7 @@ function buildCLI(container) {
|
|
|
2401
2401
|
registerDepList(dep, container);
|
|
2402
2402
|
registerDepGraph(dep, container);
|
|
2403
2403
|
program.command("tui").description("Launch interactive terminal UI").option("-p, --project <project>", "Start with specific project").action(async (opts) => {
|
|
2404
|
-
const { launchTUI } = await import("./tui-
|
|
2404
|
+
const { launchTUI } = await import("./tui-24ZW56Q6.js");
|
|
2405
2405
|
await launchTUI(container, opts.project);
|
|
2406
2406
|
});
|
|
2407
2407
|
return program;
|
|
@@ -2417,7 +2417,7 @@ async function main() {
|
|
|
2417
2417
|
const container = createContainer(db, config.dbPath);
|
|
2418
2418
|
const args = process.argv.slice(2);
|
|
2419
2419
|
if (args.length === 0) {
|
|
2420
|
-
const { launchTUI } = await import("./tui-
|
|
2420
|
+
const { launchTUI } = await import("./tui-24ZW56Q6.js");
|
|
2421
2421
|
await launchTUI(container);
|
|
2422
2422
|
} else {
|
|
2423
2423
|
const program = buildCLI(container);
|