@vlandoss/localproxy 0.0.1-git-2ebd77c.0 → 0.0.1-git-a0cd9b7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vlandoss/localproxy",
3
- "version": "0.0.1-git-2ebd77c.0",
3
+ "version": "0.0.1-git-a0cd9b7.0",
4
4
  "description": "Simple local development proxy automation",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/packages/localproxy#readme",
6
6
  "bugs": {
@@ -20,13 +20,14 @@
20
20
  "files": [
21
21
  "bin",
22
22
  "src",
23
- "config"
23
+ "config",
24
+ "tsconfig.json"
24
25
  ],
25
26
  "dependencies": {
26
27
  "@inquirer/prompts": "^7.8.4",
27
28
  "commander": "13.1.0",
28
- "@vlandoss/loggy": "0.0.4-git-2ebd77c.0",
29
- "@vlandoss/clibuddy": "0.0.5-git-2ebd77c.0"
29
+ "@vlandoss/clibuddy": "0.0.4",
30
+ "@vlandoss/loggy": "0.0.3"
30
31
  },
31
32
  "publishConfig": {
32
33
  "access": "public"
@@ -19,7 +19,7 @@ export class HostsService {
19
19
  }
20
20
 
21
21
  async setup(options: SetupOptions) {
22
- verboseShell.$`sudo hosts backups create`;
22
+ await verboseShell.$`sudo hosts backups create`;
23
23
 
24
24
  for (const host of this.#hosts) {
25
25
  await this.addHost(host, options);
@@ -12,4 +12,5 @@ export const silentShell = quietShell.child({
12
12
  export const verboseShell = quietShell.child({
13
13
  quiet: false,
14
14
  verbose: true,
15
+ stdio: ["inherit", "inherit", "inherit"],
15
16
  });
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": ["@total-typescript/tsconfig/bundler/no-dom/app"],
3
+ "compilerOptions": {
4
+ "baseUrl": ".",
5
+ "paths": {
6
+ "~/*": ["./src/*"],
7
+ "@vlandoss/*": ["../../packages/*/src"]
8
+ }
9
+ }
10
+ }