@vlandoss/starter 0.1.1 → 0.1.2-git-ee582d6.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/bin.ts +1 -1
- package/package.json +1 -1
- package/plopfiles/plopfile.ts +1 -1
- package/src/actions/add.ts +1 -1
- package/src/actions/init.ts +1 -1
- package/src/program/index.ts +1 -1
package/bin.ts
CHANGED
package/package.json
CHANGED
package/plopfiles/plopfile.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from "node:path";
|
|
2
2
|
import type { NodePlopAPI } from "node-plop";
|
|
3
3
|
import { ConfigService } from "#src/services/config.ts";
|
|
4
|
-
import { tsconfigPrompts } from "./prompts/tsconfig";
|
|
4
|
+
import { tsconfigPrompts } from "./prompts/tsconfig.ts";
|
|
5
5
|
|
|
6
6
|
const validators = {
|
|
7
7
|
atLeastOne: (answer: string[]) => {
|
package/src/actions/add.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { logger } from "#src/services/logger.ts";
|
|
2
2
|
import type { TemplateService } from "#src/services/types.ts";
|
|
3
|
-
import type { AnyAction } from "./types";
|
|
3
|
+
import type { AnyAction } from "./types.ts";
|
|
4
4
|
|
|
5
5
|
type CreateOptions = {
|
|
6
6
|
templateService: TemplateService;
|
package/src/actions/init.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ShellService } from "@vlandoss/clibuddy";
|
|
2
2
|
import { logger } from "#src/services/logger.ts";
|
|
3
3
|
import type { TemplateService } from "#src/services/types.ts";
|
|
4
|
-
import type { AnyAction } from "./types";
|
|
4
|
+
import type { AnyAction } from "./types.ts";
|
|
5
5
|
|
|
6
6
|
type ExecuteOptions = {
|
|
7
7
|
template?: string;
|
package/src/program/index.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Command } from "commander";
|
|
|
3
3
|
import { createContext } from "#src/services/ctx.ts";
|
|
4
4
|
import { createAddCommand } from "./commands/add.ts";
|
|
5
5
|
import { createInitCommand } from "./commands/init.ts";
|
|
6
|
-
import { BANNER_TEXT } from "./ui";
|
|
6
|
+
import { BANNER_TEXT } from "./ui.ts";
|
|
7
7
|
|
|
8
8
|
export type Options = {
|
|
9
9
|
binDir: string;
|