Skip to content

Commit 589b9d1

Browse files
committed
rename packages
1 parent 7eaeaf9 commit 589b9d1

File tree

49 files changed

+207
-466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+207
-466
lines changed

.github/labeler.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'package: angular-query-devtools-experimental':
2-
- 'packages/angular-query-devtools-experimental/**/*'
3-
'package: angular-query-experimental':
4-
- 'packages/angular-query-experimental/**/*'
2+
- 'packages/angular-query-devtools/**/*'
3+
'package: angular-query':
4+
- 'packages/angular-query/**/*'
55
'package: eslint-plugin-query':
66
- 'packages/eslint-plugin-query/**/*'
77
'package: query-async-storage-persister':

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ node_modules
66
package-lock.json
77
yarn.lock
88

9+
*.d.ts
10+
*.map
11+
*.tsbuildinfo
12+
913
# builds
1014
build
1115
coverage

.prettierignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,3 @@
88
pnpm-lock.yaml
99
packages/**/tsup.config.bundled*.mjs
1010
**/tsconfig.vitest-temp.json
11-
12-
# API Extractor report
13-
packages/angular-query-experimental/etc/*.md

codecov.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ comment:
1919

2020
component_management:
2121
individual_components:
22-
- component_id: angular-query-devtools-experimental
23-
name: '@tanstack/angular-query-devtools-experimental'
22+
- component_id: angular-query-devtools
23+
name: '@tanstack/angular-query-devtools'
2424
paths:
25-
- packages/angular-query-devtools-experimental/**
26-
- component_id: angular-query-experimental
27-
name: '@tanstack/angular-query-experimental'
25+
- packages/angular-query-devtools/**
26+
- component_id: angular-query
27+
name: '@tanstack/angular-query'
2828
paths:
29-
- packages/angular-query-experimental/**
29+
- packages/angular-query/**
3030
- component_id: eslint-plugin-query
3131
name: '@tanstack/eslint-plugin-query'
3232
paths:

docs/framework/angular/typescript.md

Lines changed: 1 addition & 1 deletion

examples/angular/auto-refetching/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@angular/core": "^19.1.0-next.0",
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
17-
"@tanstack/angular-query-experimental": "^5.64.2",
17+
"@tanstack/angular-query": "^5.64.2",
1818
"rxjs": "^7.8.1",
1919
"tslib": "^2.6.3",
2020
"zone.js": "^0.15.0"

examples/angular/auto-refetching/src/app/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
QueryClient,
88
provideTanStackQuery,
99
withDevtools,
10-
} from '@tanstack/angular-query-experimental'
10+
} from '@tanstack/angular-query'
1111
import { mockInterceptor } from './interceptor/mock-api.interceptor'
1212
import type { ApplicationConfig } from '@angular/core'
1313

examples/angular/auto-refetching/src/app/components/auto-refetching.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import {
88
injectMutation,
99
injectQuery,
10-
} from '@tanstack/angular-query-experimental'
10+
} from '@tanstack/angular-query'
1111
import { NgStyle } from '@angular/common'
1212
import { TasksService } from '../services/tasks.service'
1313

examples/angular/auto-refetching/src/app/services/tasks.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
QueryClient,
55
mutationOptions,
66
queryOptions,
7-
} from '@tanstack/angular-query-experimental'
7+
} from '@tanstack/angular-query'
88

99
import { lastValueFrom } from 'rxjs'
1010

examples/angular/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@angular/core": "^19.1.0-next.0",
1515
"@angular/platform-browser": "^19.1.0-next.0",
1616
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
17-
"@tanstack/angular-query-experimental": "^5.64.2",
17+
"@tanstack/angular-query": "^5.64.2",
1818
"rxjs": "^7.8.1",
1919
"tslib": "^2.6.3",
2020
"zone.js": "^0.15.0"

0 commit comments

Comments
 (0)