From b085fd117137579ddf6a61c3311bc9778db430ac Mon Sep 17 00:00:00 2001 From: Pascal Klesse Date: Fri, 30 Aug 2024 10:20:31 +0200 Subject: [PATCH] update packages --- .github/workflows/build.yml | 4 ++-- .github/workflows/next.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- package.json | 1 - 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ffd7862..5440672 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: run: npm install - name: Install dependencies - run: cd playground/nuxt-app && npm install && npm build + run: cd playground/nuxt-app && npm install && npm run build - name: Build - run: npm build + run: npm run build diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index c03b90b..1013ffa 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -37,9 +37,9 @@ jobs: run: npm install - name: Install dependencies - run: cd playground/nuxt-app && npm install && npm build + run: cd playground/nuxt-app && npm install && npm run build - - run: npm build + - run: npm run build - name: Set git identity run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 56f0c6d..03f4528 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,8 +42,8 @@ jobs: - name: Install dependencies run: npm install - name: Install dependencies - run: cd playground/nuxt-app && npm install && npm build - - run: npm build + run: cd playground/nuxt-app && npm install && npm run build + - run: npm run build - name: Publish Package run: npm publish --access public --tag latest --no-git-checks env: diff --git a/package.json b/package.json index bdcdda3..17f5f75 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ "scripts": { "reinit": "rm -rf node_modules && rm -rf package-lock.json && yes | npx nuxt cleanup && npm cache clean --force && npm i", "build": "nuxt-module-build build", - "prepack": "pnpm build", "dev": "nuxi dev playground/nuxt-app", "dev:generate-types": "GENERATE_TYPES=1 nuxi dev playground/nuxt-app", "dev:build": "nuxi build playground/nuxt-app",