Skip to content

Commit 8955f1a

Browse files
committed
Opt out of telemetry collection
1 parent fdf9432 commit 8955f1a

File tree

2 files changed

+75
-83
lines changed

2 files changed

+75
-83
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: [main]
88

9+
env:
10+
NEXT_TELEMETRY_DISABLED: 1
11+
912
jobs:
1013
lint:
1114
name: Lint and Format Check
@@ -27,17 +30,6 @@ jobs:
2730
node-version: ${{ matrix.node-version }}
2831
cache: "pnpm"
2932

30-
- name: Confgiure Build Caching
31-
uses: actions/cache@v4
32-
with:
33-
path: |
34-
${{ github.workspace }}/.next/cache
35-
# Generate a new cache whenever packages or source files change.
36-
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
37-
# If source files changed but packages didn't, rebuild from a prior cache.
38-
restore-keys: |
39-
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
40-
4133
- name: Install dependencies
4234
run: pnpm install --frozen-lockfile
4335

package.json

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
{
2-
"name": "docs",
3-
"version": "0.0.0",
4-
"private": true,
5-
"type": "module",
6-
"scripts": {
7-
"build": "next build --turbo",
8-
"dev": "next dev --turbo",
9-
"start": "next start",
10-
"postinstall": "fumadocs-mdx",
11-
"lint": "biome lint src/",
12-
"lint:links": "tsx scripts/link-validation.ts",
13-
"lint:links-save": "tsx scripts/link-validation.ts --output broken-links.md",
14-
"lint:fix": "biome lint --write src/",
15-
"format": "biome format src/",
16-
"format:fix": "biome format --write src/",
17-
"check": "biome check src/ && pnpm run lint:links",
18-
"check:fix": "biome check --write src/"
19-
},
20-
"dependencies": {
21-
"@fumadocs/mdx-remote": "^1.4.0",
22-
"@netlify/plugin-nextjs": "^5.13.3",
23-
"@next/third-parties": "^15.5.4",
24-
"@orama/orama": "^3.1.13",
25-
"@radix-ui/react-collapsible": "^1.1.12",
26-
"@radix-ui/react-popover": "^1.1.15",
27-
"@radix-ui/react-presence": "^1.1.5",
28-
"@radix-ui/react-scroll-area": "^1.2.10",
29-
"@radix-ui/react-separator": "^1.1.7",
30-
"@tanstack/react-query": "^5.89.0",
31-
"algoliasearch": "^5.37.0",
32-
"class-variance-authority": "^0.7.1",
33-
"clsx": "^2.1.1",
34-
"fumadocs-core": "15.7.11",
35-
"fumadocs-mdx": "12.0.1",
36-
"fumadocs-openapi": "^9.3.8",
37-
"fumadocs-ui": "15.7.11",
38-
"glob": "^11.0.3",
39-
"katex": "^0.16.22",
40-
"lucide-react": "^0.540.0",
41-
"mermaid": "^11.11.0",
42-
"micromatch": "^4.0.8",
43-
"next": "^15.5.3",
44-
"next-themes": "^0.4.6",
45-
"next-validate-link": "^1.6.3",
46-
"react": "^19.1.1",
47-
"react-dom": "^19.1.1",
48-
"rehype-katex": "^7.0.1",
49-
"remark": "^15.0.1",
50-
"remark-gfm": "^4.0.1",
51-
"remark-math": "^6.0.0",
52-
"remark-mdx": "^3.1.1",
53-
"shiki": "^3.12.2",
54-
"tailwind-merge": "^3.3.1",
55-
"unist-util-visit": "^5.0.0"
56-
},
57-
"devDependencies": {
58-
"@biomejs/biome": "^2.2.4",
59-
"@tailwindcss/postcss": "^4.1.13",
60-
"@tanstack/react-query-devtools": "^5.89.0",
61-
"@types/mdx": "^2.0.13",
62-
"@types/micromatch": "^4.0.9",
63-
"@types/node": "24.1.0",
64-
"@types/react": "^19.1.12",
65-
"@types/react-dom": "^19.1.9",
66-
"postcss": "^8.5.6",
67-
"tailwindcss": "^4.1.13",
68-
"tsx": "^4.20.5",
69-
"tw-animate-css": "^1.3.8",
70-
"typescript": "^5.9.2"
71-
},
72-
"packageManager": "pnpm@10.17.1"
73-
}
2+
"name": "docs",
3+
"version": "0.0.0",
4+
"private": true,
5+
"type": "module",
6+
"scripts": {
7+
"build": "next build --turbo",
8+
"dev": "next dev --turbo",
9+
"start": "next start",
10+
"postinstall": "fumadocs-mdx",
11+
"lint": "biome lint src/",
12+
"lint:links": "tsx scripts/link-validation.ts",
13+
"lint:links-save": "tsx scripts/link-validation.ts --output broken-links.md",
14+
"lint:fix": "biome lint --write src/",
15+
"format": "biome format src/",
16+
"format:fix": "biome format --write src/",
17+
"check": "biome check src/ && pnpm run lint:links",
18+
"check:fix": "biome check --write src/"
19+
},
20+
"dependencies": {
21+
"@fumadocs/mdx-remote": "^1.4.0",
22+
"@netlify/plugin-nextjs": "^5.13.3",
23+
"@next/third-parties": "^15.5.4",
24+
"@orama/orama": "^3.1.13",
25+
"@radix-ui/react-collapsible": "^1.1.12",
26+
"@radix-ui/react-popover": "^1.1.15",
27+
"@radix-ui/react-presence": "^1.1.5",
28+
"@radix-ui/react-scroll-area": "^1.2.10",
29+
"@radix-ui/react-separator": "^1.1.7",
30+
"@tanstack/react-query": "^5.89.0",
31+
"algoliasearch": "^5.37.0",
32+
"class-variance-authority": "^0.7.1",
33+
"clsx": "^2.1.1",
34+
"fumadocs-core": "15.7.11",
35+
"fumadocs-mdx": "12.0.1",
36+
"fumadocs-openapi": "^9.3.8",
37+
"fumadocs-ui": "15.7.11",
38+
"glob": "^11.0.3",
39+
"katex": "^0.16.22",
40+
"lucide-react": "^0.540.0",
41+
"mermaid": "^11.11.0",
42+
"micromatch": "^4.0.8",
43+
"next": "^15.5.3",
44+
"next-themes": "^0.4.6",
45+
"next-validate-link": "^1.6.3",
46+
"react": "^19.1.1",
47+
"react-dom": "^19.1.1",
48+
"rehype-katex": "^7.0.1",
49+
"remark": "^15.0.1",
50+
"remark-gfm": "^4.0.1",
51+
"remark-math": "^6.0.0",
52+
"remark-mdx": "^3.1.1",
53+
"shiki": "^3.12.2",
54+
"tailwind-merge": "^3.3.1",
55+
"unist-util-visit": "^5.0.0"
56+
},
57+
"devDependencies": {
58+
"@biomejs/biome": "^2.2.4",
59+
"@tailwindcss/postcss": "^4.1.13",
60+
"@tanstack/react-query-devtools": "^5.89.0",
61+
"@types/mdx": "^2.0.13",
62+
"@types/micromatch": "^4.0.9",
63+
"@types/node": "24.1.0",
64+
"@types/react": "^19.1.12",
65+
"@types/react-dom": "^19.1.9",
66+
"postcss": "^8.5.6",
67+
"tailwindcss": "^4.1.13",
68+
"tsx": "^4.20.5",
69+
"tw-animate-css": "^1.3.8",
70+
"typescript": "^5.9.2"
71+
},
72+
"packageManager": "pnpm@10.17.1"
73+
}

0 commit comments

Comments
 (0)