Skip to content

Commit

Permalink
update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Klesse committed Aug 30, 2024
1 parent 3ef4eee commit b085fd1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b085fd1

Please sign in to comment.