Skip to content

Commit

Permalink
Update packages (#10)
Browse files Browse the repository at this point in the history
* update packages

---------

Co-authored-by: Pascal Klesse <[email protected]>
Co-authored-by: Daniel Winkelmann <[email protected]>
  • Loading branch information
3 people authored Aug 30, 2024
1 parent 17bb257 commit f903b23
Show file tree
Hide file tree
Showing 22 changed files with 12,698 additions and 24,495 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "pnpm"
cache: "npm"
node-version: ${{ matrix.node }}

- name: Install dependencies
run: pnpm install
run: npm install

- name: Install dependencies
run: cd playground/nuxt-app && pnpm install && pnpm build
run: cd playground/nuxt-app && npm install && npm run build

- name: Build
run: pnpm build
run: npm run build
10 changes: 5 additions & 5 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "pnpm"
cache: "npm"
node-version: ${{ matrix.node }}
registry-url: "https://registry.npmjs.org/"
- uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Install dependencies
run: pnpm install
run: npm install

- name: Install dependencies
run: cd playground/nuxt-app && pnpm install && pnpm build
run: cd playground/nuxt-app && npm install && npm run build

- run: pnpm build
- run: npm run build

- name: Set git identity
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
git remote set-url origin https://x-access-token:${{ github.token }}@github.com/${{ github.repository }}
git push -o ci.skip
- name: Publish Package
run: pnpm publish --tag next --access public --no-git-checks
run: npm publish --tag next --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: get-npm-version
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "pnpm"
cache: "npm"
node-version: ${{ matrix.node }}
registry-url: "https://registry.npmjs.org/"
- uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Install dependencies
run: pnpm install
run: npm install
- name: Install dependencies
run: cd playground/nuxt-app && pnpm install && pnpm build
- run: pnpm build
run: cd playground/nuxt-app && npm install && npm run build
- run: npm run build
- name: Publish Package
run: pnpm publish --access public --tag latest --no-git-checks
run: npm publish --access public --tag latest --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Deploy notification
Expand Down
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
},
"cSpell.words": [
"Repr"
]
}
Loading

0 comments on commit f903b23

Please sign in to comment.