Skip to content

Commit 8ac8410

Browse files
committed
feat: migrate Next app to a workspace package
1 parent 442836e commit 8ac8410

File tree

172 files changed

+17999
-64
lines changed

Some content is hidden

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

172 files changed

+17999
-64
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"pages": {
3+
"/layout": [
4+
"static/chunks/webpack.js",
5+
"static/chunks/main-app.js",
6+
"static/css/app/layout.css",
7+
"static/chunks/app/layout.js"
8+
],
9+
"/page": [
10+
"static/chunks/webpack.js",
11+
"static/chunks/main-app.js",
12+
"static/chunks/app/page.js"
13+
],
14+
"/blog/(index)/layout": [
15+
"static/chunks/webpack.js",
16+
"static/chunks/main-app.js",
17+
"static/chunks/app/blog/(index)/layout.js"
18+
],
19+
"/blog/(index)/page": [
20+
"static/chunks/webpack.js",
21+
"static/chunks/main-app.js",
22+
"static/css/app/blog/(index)/page.css",
23+
"static/chunks/app/blog/(index)/page.js"
24+
],
25+
"/blog/(posts)/[slug]/page": [
26+
"static/chunks/webpack.js",
27+
"static/chunks/main-app.js",
28+
"static/css/app/blog/(posts)/[slug]/page.css",
29+
"static/chunks/app/blog/(posts)/[slug]/page.js"
30+
],
31+
"/about/page": [
32+
"static/chunks/webpack.js",
33+
"static/chunks/main-app.js",
34+
"static/css/app/about/page.css",
35+
"static/chunks/app/about/page.js"
36+
]
37+
}
38+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"polyfillFiles": [
3+
"static/chunks/polyfills.js"
4+
],
5+
"devFiles": [],
6+
"ampDevFiles": [],
7+
"lowPriorityFiles": [
8+
"static/development/_buildManifest.js",
9+
"static/development/_ssgManifest.js"
10+
],
11+
"rootMainFiles": [
12+
"static/chunks/webpack.js",
13+
"static/chunks/main-app.js"
14+
],
15+
"rootMainFilesTree": {},
16+
"pages": {
17+
"/_app": []
18+
},
19+
"ampFirstPages": []
20+
}

apps/vivsha.ws/.next/cache/.rscinfo

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"encryption.key":"8JxO21SL3Y/GsYWl2ClW5rFN5IYe9KOLBI3dsqVa1TM=","encryption.expire_at":1736892208352}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

apps/vivsha.ws/.next/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"type": "commonjs"}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

apps/vivsha.ws/.next/server/_rsc_posts_build-you-a-tweetbot_post_mdx.js

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/_rsc_posts_data-mashups_post_mdx.js

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/_rsc_posts_electric-pentameter_post_mdx.js

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/_rsc_posts_haskell-snacks-yesod-morpheus-graphql_post_mdx.js

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/_rsc_posts_linux-on-windows_post_mdx.js

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/_rsc_posts_robot-brain-scala_post_mdx.js

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"/page": "app/page.js",
3+
"/blog/(posts)/[slug]/page": "app/blog/(posts)/[slug]/page.js",
4+
"/about/page": "app/about/page.js",
5+
"/blog/(index)/page": "app/blog/(index)/page.js"
6+
}

apps/vivsha.ws/.next/server/app/about/page.js

Lines changed: 496 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/about/page_client-reference-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/blog/(index)/page.js

Lines changed: 1016 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/blog/(index)/page_client-reference-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/blog/(posts)/[slug]/page.js

Lines changed: 1051 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/blog/(posts)/[slug]/page_client-reference-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/page.js

Lines changed: 474 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/vivsha.ws/.next/server/app/page_client-reference-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
self.__INTERCEPTION_ROUTE_REWRITE_MANIFEST="[]"
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
self.__BUILD_MANIFEST = {
2+
"polyfillFiles": [
3+
"static/chunks/polyfills.js"
4+
],
5+
"devFiles": [],
6+
"ampDevFiles": [],
7+
"lowPriorityFiles": [],
8+
"rootMainFiles": [
9+
"static/chunks/webpack.js",
10+
"static/chunks/main-app.js"
11+
],
12+
"rootMainFilesTree": {},
13+
"pages": {
14+
"/_app": []
15+
},
16+
"ampFirstPages": []
17+
};
18+
self.__BUILD_MANIFEST.lowPriorityFiles = [
19+
"/static/" + process.env.__NEXT_BUILD_ID + "/_buildManifest.js",
20+
,"/static/" + process.env.__NEXT_BUILD_ID + "/_ssgManifest.js",
21+
22+
];
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": 3,
3+
"middleware": {},
4+
"functions": {},
5+
"sortedMiddleware": []
6+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
self.__REACT_LOADABLE_MANIFEST="{}"

apps/vivsha.ws/.next/server/next-font-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"pages":{},"app":{},"appUsingSizeAdjust":false,"pagesUsingSizeAdjust":false}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

apps/vivsha.ws/.next/server/server-reference-manifest.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"node": {},
3+
"edge": {},
4+
"encryptionKey": "8JxO21SL3Y/GsYWl2ClW5rFN5IYe9KOLBI3dsqVa1TM="
5+
}

apps/vivsha.ws/.next/server/vendor-chunks/@swc.js

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)