inconvo 1.1.0 → 1.1.1
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/commands/add.js +3 -3
- package/dist/index.js +1 -1
- package/dist/templates/packs.js +1 -1
- package/package.json +1 -1
package/dist/commands/add.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Command } from "commander";
|
|
2
2
|
import path from "node:path";
|
|
3
3
|
import fs from "node:fs/promises";
|
|
4
|
-
import { logger } from "../lib/logger";
|
|
5
|
-
import { confirmPrompt } from "../lib/prompt";
|
|
6
|
-
import { componentPacks, getPack } from "../templates/packs";
|
|
4
|
+
import { logger } from "../lib/logger.js";
|
|
5
|
+
import { confirmPrompt } from "../lib/prompt.js";
|
|
6
|
+
import { componentPacks, getPack } from "../templates/packs.js";
|
|
7
7
|
export const addCommand = new Command()
|
|
8
8
|
.name("add")
|
|
9
9
|
.description("add a component pack to your project")
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { Command } from "commander";
|
|
3
|
-
import { addCommand } from "./commands/add";
|
|
3
|
+
import { addCommand } from "./commands/add.js";
|
|
4
4
|
process.on("SIGINT", () => process.exit(0));
|
|
5
5
|
process.on("SIGTERM", () => process.exit(0));
|
|
6
6
|
const program = new Command()
|
package/dist/templates/packs.js
CHANGED