Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["@vue3-apollo/web", "@vue3-apollo/operations", "@vue3-apollo/playground"],
"ignore": ["@vue3-apollo/web", "@vue3-apollo/operations", "@vue3-apollo/playground", "@vue3-apollo/docs"],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
Expand Down
5 changes: 0 additions & 5 deletions .changeset/purple-games-sleep.md

This file was deleted.

4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build packages
run: pnpm run build

- name: Type check
run: pnpm run typecheck
continue-on-error: true
1 change: 0 additions & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- main
paths:
- 'packages/docs/**'
- 'packages/core/**'
- .github/workflows/deploy-docs.yml
workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
branches:
- main
paths:
- 'packages/**'
- 'packages/core/**'
- 'packages/nuxt/src/**'
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm build && changeset publish",
"typecheck": "pnpm run typecheck:core && pnpm run typecheck:nuxt && pnpm run typecheck:web",
"typecheck": "pnpm run typecheck:core && pnpm run typecheck:web",
"typecheck:core": "pnpm --filter @vue3-apollo/core run typecheck",
"typecheck:nuxt": "pnpm --filter @vue3-apollo/nuxt run typecheck",
"typecheck:web": "pnpm --filter @vue3-apollo/web run typecheck",
"update:dependencies": "ncu --deep -u",
"version": "changeset version && pnpm install --lockfile-only"
Expand Down
1 change: 0 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "@vue3-apollo/core",
"type": "module",
"version": "1.4.0",
"packageManager": "pnpm@10.20.0",
"description": "Composable Apollo Client utilities for Vue 3.",
"author": "Guen <heloo@guen.dev>",
"license": "MIT",
Expand Down
20 changes: 0 additions & 20 deletions packages/docs/CHANGELOG.md

This file was deleted.

4 changes: 1 addition & 3 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "@vue3-apollo/nuxt",
"type": "module",
"version": "1.4.0",
"packageManager": "pnpm@10.20.0",
"description": "Nuxt module for Apollo Client integration with Vue 3",
"author": "Guen <heloo@guen.dev>",
"license": "MIT",
Expand Down Expand Up @@ -47,8 +46,7 @@
"prepack": "nuxt-module-build prepare && nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"typecheck": "pnpm run prepack && vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground"
},
"peerDependencies": {
"@apollo/client": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ApolloClient, HttpLink, InMemoryCache } from '@apollo/client'
import { ApolloClient, HttpLink, InMemoryCache } from '@apollo/client/core'
import 'virtual:uno.css'
import { apolloPlugin } from '@vue3-apollo/core'
import { createApp } from 'vue'
Expand Down
Loading