Skip to content

Commit

Permalink
Update Nx
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed May 18, 2024
1 parent 18ef8cb commit 4894f19
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 85 deletions.
4 changes: 2 additions & 2 deletions examples/vue/2.6-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
"_build": "vite build",
"_preview": "vite preview"
},
"dependencies": {
"@tanstack/vue-query": "^5.36.1",
Expand Down
6 changes: 3 additions & 3 deletions examples/vue/2.7-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build -m development",
"serve": "vite preview"
"_build": "vite build",
"_build:dev": "vite build -m development",
"_serve": "vite preview"
},
"dependencies": {
"@tanstack/vue-query": "^5.36.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/vue/nuxt3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs"
"_build": "nuxi build",
"_start": "node .output/server/index.mjs"
},
"dependencies": {
"@tanstack/vue-query": "^5.36.1"
Expand Down
4 changes: 1 addition & 3 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"affected": {
"defaultBase": "main"
},
"defaultBase": "main",
"nxCloudAccessToken": "ZDdkNDA4MGEtYjNmYi00MWI4LWE1N2QtYTdlNmYxMGJlZWM2fHJlYWQ=",
"useInferencePlugins": false,
"parallel": 5,
"namedInputs": {
"sharedGlobals": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"jsdom": "^24.0.0",
"knip": "^5.16.0",
"lint-staged": "^15.2.2",
"nx": "17.3.1",
"nx": "19.0.4",
"prettier": "^4.0.0-alpha.8",
"prettier-plugin-svelte": "^3.2.3",
"publint": "^0.2.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```ts

import type { DataTag } from '@tanstack/query-core';
import { DefaultError } from '@tanstack/query-core';
import type { DefaultError } from '@tanstack/query-core';
import type { DefinedInfiniteQueryObserverResult } from '@tanstack/query-core';
import type { DefinedQueryObserverResult } from '@tanstack/query-core';
import type { EnvironmentProviders } from '@angular/core';
Expand Down
128 changes: 55 additions & 73 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4894f19

Please sign in to comment.