@vlandoss/starter 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { dirname } from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
- import { main } from "./src/main";
4
+ import { main } from "./src/main.ts";
5
5
 
6
6
  main({
7
7
  binDir: dirname(fileURLToPath(import.meta.url)),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vlandoss/starter",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The CLI to init a new project in Variable Land",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/packages/starter#readme",
6
6
  "bugs": {
@@ -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[]) => {
@@ -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;
@@ -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;
@@ -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;