@vlandoss/starter 0.0.8 → 0.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vlandoss/starter",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
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": {
@@ -26,8 +26,8 @@
26
26
  "dependencies": {
27
27
  "commander": "13.1.0",
28
28
  "node-plop": "0.32.0",
29
- "@vlandoss/clibuddy": "0.0.5",
30
- "@vlandoss/loggy": "0.0.4"
29
+ "@vlandoss/clibuddy": "0.0.6",
30
+ "@vlandoss/loggy": "0.0.5"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
@@ -1,6 +1,6 @@
1
1
  import path from "node:path";
2
2
  import type { NodePlopAPI } from "node-plop";
3
- import { ConfigService } from "~/services/config";
3
+ import { ConfigService } from "#/services/config";
4
4
  import { tsconfigPrompts } from "./prompts/tsconfig";
5
5
 
6
6
  const validators = {
@@ -1,5 +1,5 @@
1
- import { logger } from "~/services/logger";
2
- import type { TemplateService } from "~/services/types";
1
+ import { logger } from "#/services/logger";
2
+ import type { TemplateService } from "#/services/types";
3
3
  import type { AnyAction } from "./types";
4
4
 
5
5
  type CreateOptions = {
@@ -1,6 +1,6 @@
1
1
  import type { ShellService } from "@vlandoss/clibuddy";
2
- import { logger } from "~/services/logger";
3
- import type { TemplateService } from "~/services/types";
2
+ import { logger } from "#/services/logger";
3
+ import type { TemplateService } from "#/services/types";
4
4
  import type { AnyAction } from "./types";
5
5
 
6
6
  type ExecuteOptions = {
@@ -1,9 +1,9 @@
1
1
  import { cwd } from "@vlandoss/clibuddy";
2
2
  import { Argument, createCommand, Option } from "commander";
3
- import { AddAction } from "~/actions/add";
4
- import type { ContextValue } from "~/services/ctx";
5
- import { logger } from "~/services/logger";
6
- import { createPlopTemplateService } from "~/services/template";
3
+ import { AddAction } from "#/actions/add";
4
+ import type { ContextValue } from "#/services/ctx";
5
+ import { logger } from "#/services/logger";
6
+ import { createPlopTemplateService } from "#/services/template";
7
7
 
8
8
  type AddOptions = {
9
9
  dest: string;
@@ -1,9 +1,9 @@
1
1
  import { cwd } from "@vlandoss/clibuddy";
2
2
  import { Argument, createCommand, Option } from "commander";
3
- import { InitAction } from "~/actions/init";
4
- import type { ContextValue } from "~/services/ctx";
5
- import { logger } from "~/services/logger";
6
- import { createPlopTemplateService } from "~/services/template";
3
+ import { InitAction } from "#/actions/init";
4
+ import type { ContextValue } from "#/services/ctx";
5
+ import { logger } from "#/services/logger";
6
+ import { createPlopTemplateService } from "#/services/template";
7
7
 
8
8
  type InitOptions = {
9
9
  dest: string;
@@ -1,6 +1,6 @@
1
1
  import { getVersion } from "@vlandoss/clibuddy";
2
2
  import { Command } from "commander";
3
- import { createContext } from "~/services/ctx";
3
+ import { createContext } from "#/services/ctx";
4
4
  import { createAddCommand } from "./commands/add";
5
5
  import { createInitCommand } from "./commands/init";
6
6
  import { BANNER_TEXT } from "./ui";
package/tsconfig.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "compilerOptions": {
4
4
  "baseUrl": ".",
5
5
  "paths": {
6
- "~/*": ["./src/*"],
6
+ "#/*": ["./src/*"],
7
7
  "@vlandoss/*": ["../../packages/*/src"]
8
8
  }
9
9
  }