diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09fa7da..fc6375e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,9 @@ jobs: - name: Install Dependencies run: pnpm install --frozen-lockfile + - name: Prepare + - run: pnpm prepare + - name: Lint run: pnpm lint diff --git a/package.json b/package.json index cd55ae7..735cd96 100644 --- a/package.json +++ b/package.json @@ -27,9 +27,9 @@ "module": "./dist/module.mjs", "types": "./dist/module.d.ts", "scripts": { - "postinstall": "nuxi prepare example", "build": "nuxt-module-build", "dev": "nuxi dev example", + "prepare": "nuxi prepare example", "example:build": "nuxi build example", "example:generate": "nuxi generate example", "example:start": "nuxi preview example",