Skip to content

Commit 4048d0f

Browse files
committed
refactor: "offline-full-text-search-in-web-app" to "tanstack-query-with-orbitjs"
1 parent 5e6c921 commit 4048d0f

File tree

16 files changed

+31
-31
lines changed

16 files changed

+31
-31
lines changed

.eslintrc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
"files": ["*.ts", "*.tsx"],
2626
"extends": [
2727
"plugin:@nrwl/nx/typescript",
28-
"@offline-full-text-search-in-web-app/typescript"
28+
"@tanstack-query-with-orbitjs/typescript"
2929
],
3030
"rules": {}
3131
},
3232
{
3333
"files": ["*.js", "*.jsx"],
3434
"extends": [
3535
"plugin:@nrwl/nx/javascript",
36-
"@offline-full-text-search-in-web-app/javascript"
36+
"@tanstack-query-with-orbitjs/javascript"
3737
],
3838
"rules": {}
3939
}

apps/demo-note-taking-app/.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
{
3131
"files": ["*.tsx", "*.jsx"],
32-
"extends": ["@offline-full-text-search-in-web-app/jsx"]
32+
"extends": ["@tanstack-query-with-orbitjs/jsx"]
3333
}
3434
],
3535
"rules": {

apps/demo-note-taking-app/next.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ const {withNx} = require("@nrwl/next/plugins/with-nx");
1010
* @type {import('@nrwl/next/plugins/with-nx').WithNxOptions}
1111
**/
1212
const nextConfig = {
13-
basePath: "/offline-full-text-search-in-web-app/demo-note-taking-app",
13+
basePath: "/tanstack-query-with-orbitjs/demo-note-taking-app",
1414
env: {
1515
testDataUrl:
16-
"/offline-full-text-search-in-web-app/demo-note-taking-app/test-data.json",
16+
"/tanstack-query-with-orbitjs/demo-note-taking-app/test-data.json",
1717
},
1818
eslint: {
1919
ignoreDuringBuilds: true,

apps/demo-note-taking-app/src/components/Wrapper/Wrapper.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export const Wrapper = ({children}: WrapperProps) => {
7070
<Button
7171
color={"inherit"}
7272
href={
73-
"https://github.com/DanielGiljam/offline-full-text-search-in-web-app"
73+
"https://github.com/DanielGiljam/tanstack-query-with-orbitjs"
7474
}
7575
startIcon={<GitHubIcon />}
7676
sx={{
@@ -119,7 +119,7 @@ export const Wrapper = ({children}: WrapperProps) => {
119119
<Link
120120
color={"inherit"}
121121
href={
122-
"https://github.com/DanielGiljam/offline-full-text-search-in-web-app/blob/main/LICENSE"
122+
"https://github.com/DanielGiljam/tanstack-query-with-orbitjs/blob/main/LICENSE"
123123
}
124124
underline={"hover"}
125125
>

apps/project-lobe/.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
"files": ["*.tsx", "*.jsx"],
21-
"extends": ["@offline-full-text-search-in-web-app/jsx"]
21+
"extends": ["@tanstack-query-with-orbitjs/jsx"]
2222
}
2323
]
2424
}

apps/project-lobe/docs/08-results.assets/_concrete-example-initial-code.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const App = () => {
2020

2121
:::note
2222

23-
For the sake of brevity, only the most relevant source code for this example is shown. For the full source code, see the [GitHub repository](https://github.com/DanielGiljam/offline-full-text-search-in-web-app/tree/main/apps/typical-chat-app-with-react-query).
23+
For the sake of brevity, only the most relevant source code for this example is shown. For the full source code, see the [GitHub repository](https://github.com/DanielGiljam/tanstack-query-with-orbitjs/tree/main/apps/typical-chat-app-with-react-query).
2424

2525
:::
2626

apps/project-lobe/docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config = {
1414
onBrokenMarkdownLinks: "warn",
1515
favicon: "../icon.svg",
1616
organizationName: "DanielGiljam", // Usually your GitHub org/user name.
17-
projectName: "offline-full-text-search-in-web-app", // Usually your repo name.
17+
projectName: "tanstack-query-with-orbitjs", // Usually your repo name.
1818

1919
presets: [
2020
[
@@ -26,7 +26,7 @@ const config = {
2626
sidebarPath: require.resolve("./sidebars.js"),
2727
// Please change this to your repo.
2828
editUrl:
29-
"https://github.com/DanielGiljam/offline-full-text-search-in-web-app/tree/main/apps/project-lobe/docs/",
29+
"https://github.com/DanielGiljam/tanstack-query-with-orbitjs/tree/main/apps/project-lobe/docs/",
3030
},
3131
blog: false,
3232
theme: {

apps/typical-chat-app-with-react-query/.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = {
4343
},
4444
{
4545
files: ["*.tsx", "*.jsx"],
46-
extends: ["@offline-full-text-search-in-web-app/jsx"],
46+
extends: ["@tanstack-query-with-orbitjs/jsx"],
4747
},
4848
],
4949
rules: {

apps/typical-chat-app-with-react-query/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@offline-full-text-search-in-web-app/typical-chat-app-with-react-query",
2+
"name": "@tanstack-query-with-orbitjs/typical-chat-app-with-react-query",
33
"version": "0.0.0",
44
"license": "MIT",
55
"author": "Daniel Giljam (https://github.com/DanielGiljam)",

libs/eslint-configs/javascript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@offline-full-text-search-in-web-app/eslint-config-javascript",
2+
"name": "@tanstack-query-with-orbitjs/eslint-config-javascript",
33
"version": "0.0.0",
44
"license": "MIT",
55
"author": "Daniel Giljam (https://github.com/DanielGiljam)",

libs/eslint-configs/jsx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@offline-full-text-search-in-web-app/eslint-config-jsx",
2+
"name": "@tanstack-query-with-orbitjs/eslint-config-jsx",
33
"version": "0.0.0",
44
"license": "MIT",
55
"author": "Daniel Giljam (https://github.com/DanielGiljam)",
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = {extends: ["@offline-full-text-search-in-web-app/javascript"]};
1+
module.exports = {extends: ["@tanstack-query-with-orbitjs/javascript"]};
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "@offline-full-text-search-in-web-app/eslint-config-typescript",
2+
"name": "@tanstack-query-with-orbitjs/eslint-config-typescript",
33
"version": "0.0.0",
44
"license": "MIT",
55
"author": "Daniel Giljam (https://github.com/DanielGiljam)",
66
"private": true,
77
"devDependencies": {
8-
"@offline-full-text-search-in-web-app/eslint-config-javascript": "workspace:^"
8+
"@tanstack-query-with-orbitjs/eslint-config-javascript": "workspace:^"
99
}
1010
}

nx.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3-
"npmScope": "offline-full-text-search-in-web-app",
3+
"npmScope": "tanstack-query-with-orbitjs",
44
"tasksRunnerOptions": {
55
"default": {
66
"runner": "nx/tasks-runners/default",

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "offline-full-text-search-in-web-app",
2+
"name": "tanstack-query-with-orbitjs",
33
"version": "0.0.0",
44
"license": "MIT",
55
"author": "Daniel Giljam (https://github.com/DanielGiljam)",
@@ -71,16 +71,16 @@
7171
"@nrwl/web": "15.6.3",
7272
"@nrwl/workspace": "15.6.3",
7373
"@nx-plus/docusaurus": "15.0.0-rc.0",
74-
"@offline-full-text-search-in-web-app/eslint-config-javascript": "workspace:^0.0.0",
75-
"@offline-full-text-search-in-web-app/eslint-config-jsx": "workspace:^0.0.0",
76-
"@offline-full-text-search-in-web-app/eslint-config-typescript": "workspace:^0.0.0",
7774
"@orbit/coordinator": "^0.17.0",
7875
"@orbit/indexeddb": "^0.17.2",
7976
"@orbit/indexeddb-bucket": "^0.17.0",
8077
"@orbit/memory": "^0.17.2",
8178
"@orbit/records": "^0.17.0",
8279
"@prisma/client": "^4.12.0",
8380
"@radix-ui/colors": "^0.1.8",
81+
"@tanstack-query-with-orbitjs/eslint-config-javascript": "workspace:^0.0.0",
82+
"@tanstack-query-with-orbitjs/eslint-config-jsx": "workspace:^0.0.0",
83+
"@tanstack-query-with-orbitjs/eslint-config-typescript": "workspace:^0.0.0",
8484
"@tanstack/react-query": "4.26.1",
8585
"@tanstack/react-query-devtools": "4.26.1",
8686
"@tanstack/react-virtual": "v3.0.0-beta.54",

pnpm-lock.yaml

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)