Skip to content

Commit a9b7529

Browse files
authored
Merge pull request #128 from rollbar/matt/cleanup-nextjs-examples
Cleanup nextjs examples
2 parents 418412d + d1bf3b1 commit a9b7529

Some content is hidden

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

53 files changed

+3775
-2563
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
include:
18-
- node: 16
19-
npm: 8
2018
- node: 18
2119
npm: 9
2220
- node: 20
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"root": true,
3-
"extends": "next/core-web-vitals"
3+
"extends": ["next/core-web-vitals"]
44
}

examples/nextjs-approuter/package-lock.json

Lines changed: 1327 additions & 1282 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nextjs-approuter",
2+
"name": "nextjs-app-router-test",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
@@ -8,26 +8,21 @@
88
"start": "next start",
99
"lint": "next lint"
1010
},
11-
"engines": {
12-
"node": ">=18"
13-
},
1411
"dependencies": {
1512
"@rollbar/react": "file:.yalc/@rollbar/react",
16-
"next": "14.1.3",
13+
"next": "14.2.15",
1714
"react": "^18",
18-
"react-code-blocks": "^0.1.6",
1915
"react-dom": "^18",
2016
"rollbar": "^2.26.4"
2117
},
2218
"devDependencies": {
2319
"@types/node": "^20",
2420
"@types/react": "^18",
2521
"@types/react-dom": "^18",
26-
"autoprefixer": "^10.0.1",
2722
"eslint": "^8",
28-
"eslint-config-next": "14.1.3",
23+
"eslint-config-next": "14.2.15",
2924
"postcss": "^8",
30-
"tailwindcss": "^3.3.0",
25+
"tailwindcss": "^3.4.1",
3126
"typescript": "^5"
3227
}
3328
}

examples/nextjs-approuter/postcss.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @type {import('postcss-load-config').Config} */
2+
const config = {
3+
plugins: {
4+
tailwindcss: {},
5+
},
6+
};
7+
8+
export default config;

examples/nextjs-approuter/public/vercel.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/nextjs-approuter/src/app/callback.tsx

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/nextjs-approuter/src/app/fallback.tsx

Lines changed: 0 additions & 7 deletions
This file was deleted.
Binary file not shown.

0 commit comments

Comments
 (0)