doomain 0.1.17 → 0.1.18

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/dev.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env -S node --loader ts-node/esm --disable-warning=ExperimentalWarning
2
2
 
3
- import {execute} from '@oclif/core'
3
+ import { execute } from '@oclif/core'
4
4
 
5
- await execute({development: true, dir: import.meta.url})
5
+ await execute({ development: true, dir: import.meta.url })
package/bin/run.js CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import {execute} from '@oclif/core'
3
+ import { execute } from '@oclif/core'
4
4
 
5
5
  const args = process.argv.slice(2)
6
6
  const routedArgs = args.length === 0 || (args.length === 1 && args[0] === '--json') ? ['wizard', ...args] : args
7
7
 
8
- await execute({args: routedArgs, dir: import.meta.url})
8
+ await execute({ args: routedArgs, dir: import.meta.url })
@@ -894,5 +894,5 @@
894
894
  ]
895
895
  }
896
896
  },
897
- "version": "0.1.17"
897
+ "version": "0.1.18"
898
898
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doomain",
3
3
  "description": "Configure Vercel and Clerk production domains in seconds",
4
- "version": "0.1.17",
4
+ "version": "0.1.18",
5
5
  "author": "Crafter Station",
6
6
  "packageManager": "bun@1.3.13",
7
7
  "bin": {
@@ -21,6 +21,7 @@
21
21
  "@types/mocha": "^10",
22
22
  "@types/node": "^18",
23
23
  "chai": "^4",
24
+ "husky": "^9.1.7",
24
25
  "mocha": "^11",
25
26
  "oclif": "^4",
26
27
  "shx": "^0.3.3",
@@ -82,6 +83,7 @@
82
83
  "lint": "biome lint .",
83
84
  "postpack": "shx rm -f oclif.manifest.json",
84
85
  "posttest": "bun run lint",
86
+ "prepare": "husky",
85
87
  "prepack": "oclif manifest && oclif readme",
86
88
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
87
89
  "version": "oclif readme && git add README.md"