@dword-design/nuxt-custom-cli 2.0.1 → 2.0.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/dist/module.js +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -5,7 +5,7 @@ export const CUSTOM_CLI_ERROR_MESSAGE = "Default export from server/cli.ts must
|
|
|
5
5
|
const DEFINE_WRAPPER_USED_MARKER = "__defineCustomCliUsed";
|
|
6
6
|
const TEMPLATE_FOLDER = "custom-cli";
|
|
7
7
|
export default defineNuxtModule({
|
|
8
|
-
setup: (
|
|
8
|
+
setup: (options, nuxt) => {
|
|
9
9
|
const defineCustomCliTemplate = addTemplate({
|
|
10
10
|
filename: pathLib.join(TEMPLATE_FOLDER, "define-custom-cli.ts"),
|
|
11
11
|
getContents: () => endent`
|