Skip to content

Commit 85a50d4

Browse files
authored
fix: revert symlinks to cp due to CLI issues (#70)
* fix: revert symlinks * chore: fix tests * fix: use server handler name constant in config
1 parent 2576f81 commit 85a50d4

File tree

8 files changed

+32
-87
lines changed

8 files changed

+32
-87
lines changed

src/build/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { NetlifyPluginConstants, NetlifyPluginOptions } from '@netlify/buil
22
import type { PrerenderManifest } from 'next/dist/build/index.js'
33
import { readFile } from 'node:fs/promises'
44
import { resolve } from 'node:path'
5-
import { STATIC_DIR } from './constants.js'
5+
import { SERVER_HANDLER_NAME, STATIC_DIR } from './constants.js'
66

77
export const getPrerenderManifest = async ({
88
PUBLISH_DIR,
@@ -22,7 +22,7 @@ export const setDeployConfig = ({ netlifyConfig }: Pick<NetlifyPluginOptions, 'n
2222
netlifyConfig.redirects ||= []
2323
netlifyConfig.redirects.push({
2424
from: '/*',
25-
to: '/.netlify/functions/___netlify-server-handler',
25+
to: `/.netlify/functions/${SERVER_HANDLER_NAME}`,
2626
status: 200,
2727
})
2828
}

src/build/content/server.ts

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,30 @@
11
import glob from 'fast-glob'
2-
import { mkdir, symlink } from 'node:fs/promises'
3-
import { dirname, join } from 'node:path'
2+
import { cp } from 'node:fs/promises'
3+
import { join } from 'node:path'
44

55
/**
66
* Copy App/Pages Router Javascript needed by the server handler
77
*/
8-
export const linkServerContent = async (src: string, dest: string): Promise<void> => {
8+
export const copyServerContent = async (src: string, dest: string): Promise<void> => {
99
const paths = await glob([`*`, `server/*`, `server/chunks/*`, `server/+(app|pages)/**/*.js`], {
1010
cwd: src,
1111
extglob: true,
1212
})
1313
await Promise.all(
1414
paths.map(async (path: string) => {
15-
await mkdir(join(dest, dirname(path)), { recursive: true })
16-
await symlink(join(src, path), join(dest, path))
15+
await cp(join(src, path), join(dest, path), { recursive: true })
1716
}),
1817
)
1918
}
2019

21-
export const linkServerDependencies = async (src: string, dest: string): Promise<void> => {
20+
export const copyServerDependencies = async (src: string, dest: string): Promise<void> => {
2221
const paths = await glob([`**`], {
2322
cwd: src,
2423
extglob: true,
2524
})
2625
await Promise.all(
2726
paths.map(async (path: string) => {
28-
await mkdir(join(dest, dirname(path)), { recursive: true })
29-
await symlink(join(src, path), join(dest, path))
27+
await cp(join(src, path), join(dest, path), { recursive: true })
3028
}),
3129
)
3230
}

src/build/content/static.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { mockFileSystem } from '../../../tests/index.js'
55
import { FixtureTestContext, createFsFixture } from '../../../tests/utils/fixture.js'
66
import { getBlobStore } from '../blob.js'
77
import { STATIC_DIR } from '../constants.js'
8-
import { linkStaticAssets, uploadStaticContent } from './static.js'
8+
import { copyStaticAssets, uploadStaticContent } from './static.js'
99

1010
afterEach(() => {
1111
vi.restoreAllMocks()
@@ -29,7 +29,7 @@ test('should clear the static directory contents', async () => {
2929
[`${STATIC_DIR}/remove-me.js`]: '',
3030
})
3131

32-
await linkStaticAssets({
32+
await copyStaticAssets({
3333
constants: { PUBLISH_DIR },
3434
} as Pick<NetlifyPluginOptions, 'constants'>)
3535

@@ -49,7 +49,7 @@ test<FixtureTestContext>('should link static content from the publish directory
4949
ctx,
5050
)
5151

52-
await linkStaticAssets({
52+
await copyStaticAssets({
5353
constants: { PUBLISH_DIR },
5454
} as Pick<NetlifyPluginOptions, 'constants'>)
5555

@@ -76,7 +76,7 @@ test<FixtureTestContext>('should link static content from the public directory t
7676
ctx,
7777
)
7878

79-
await linkStaticAssets({
79+
await copyStaticAssets({
8080
constants: { PUBLISH_DIR },
8181
} as Pick<NetlifyPluginOptions, 'constants'>)
8282

src/build/content/static.ts

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
import type { NetlifyPluginOptions } from '@netlify/build'
22
import glob from 'fast-glob'
33
import type { PrerenderManifest } from 'next/dist/build/index.js'
4-
import { readFile, rm } from 'node:fs/promises'
4+
import { existsSync } from 'node:fs'
5+
import { cp, readFile, rm } from 'node:fs/promises'
56
import { basename, dirname, resolve } from 'node:path'
67
import { join as joinPosix } from 'node:path/posix'
78
import { getBlobStore } from '../blob.js'
89
import { getPrerenderManifest } from '../config.js'
910
import { STATIC_DIR } from '../constants.js'
10-
import { linkdir } from '../files.js'
1111

1212
export const uploadStaticContent = async ({
1313
constants: { PUBLISH_DIR, NETLIFY_API_TOKEN, NETLIFY_API_HOST, SITE_ID },
1414
}: Pick<NetlifyPluginOptions, 'constants'>): Promise<void> => {
1515
const dir = 'server/pages'
16-
const paths = await glob(['**/*.html'], {
16+
const paths = await glob('**/*.html', {
1717
cwd: resolve(PUBLISH_DIR, dir),
1818
})
1919

@@ -34,7 +34,6 @@ export const uploadStaticContent = async ({
3434
return !Object.keys(manifest.routes).includes(route)
3535
})
3636
.map(async (path) => {
37-
console.log(`Uploading static content: ${path}`)
3837
await blob.set(
3938
joinPosix(dir, path),
4039
await readFile(resolve(PUBLISH_DIR, dir, path), 'utf-8'),
@@ -51,10 +50,16 @@ export const uploadStaticContent = async ({
5150
/**
5251
* Move static content to the publish dir so it is uploaded to the CDN
5352
*/
54-
export const linkStaticAssets = async ({
53+
export const copyStaticAssets = async ({
5554
constants: { PUBLISH_DIR },
5655
}: Pick<NetlifyPluginOptions, 'constants'>): Promise<void> => {
5756
await rm(resolve(STATIC_DIR), { recursive: true, force: true })
58-
await linkdir(resolve(PUBLISH_DIR, 'static'), resolve(STATIC_DIR, '_next/static'))
59-
await linkdir(resolve('public'), resolve(STATIC_DIR))
57+
if (existsSync(resolve('public'))) {
58+
await cp(resolve('public'), resolve(STATIC_DIR), { recursive: true })
59+
}
60+
if (existsSync(resolve(PUBLISH_DIR, 'static'))) {
61+
await cp(resolve(PUBLISH_DIR, 'static'), resolve(STATIC_DIR, '_next/static'), {
62+
recursive: true,
63+
})
64+
}
6065
}

src/build/files.test.ts

-44
This file was deleted.

src/build/files.ts

-13
This file was deleted.

src/build/functions/server.ts

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import { NetlifyPluginOptions } from '@netlify/build'
22
import { nodeFileTrace } from '@vercel/nft'
3-
import { mkdir, rm, symlink, writeFile } from 'fs/promises'
4-
import { dirname, join, resolve } from 'node:path'
3+
import { cp, rm, writeFile } from 'fs/promises'
4+
import { join, resolve } from 'node:path'
55
import {
66
PLUGIN_DIR,
77
PLUGIN_NAME,
88
PLUGIN_VERSION,
99
SERVER_HANDLER_DIR,
1010
SERVER_HANDLER_NAME,
1111
} from '../constants.js'
12-
import { linkServerContent, linkServerDependencies } from '../content/server.js'
12+
import { copyServerContent, copyServerDependencies } from '../content/server.js'
1313

1414
/**
1515
* Create a Netlify function to run the Next.js server
@@ -33,17 +33,16 @@ export const createServerHandler = async ({
3333
// copy the handler dependencies
3434
await Promise.all(
3535
[...fileList].map(async (path) => {
36-
await mkdir(resolve(SERVER_HANDLER_DIR, dirname(path)), { recursive: true })
37-
await symlink(resolve(PLUGIN_DIR, path), resolve(SERVER_HANDLER_DIR, path))
36+
await cp(resolve(PLUGIN_DIR, path), resolve(SERVER_HANDLER_DIR, path), { recursive: true })
3837
}),
3938
)
4039

4140
// copy the next.js standalone build output to the handler directory
42-
await linkServerContent(
41+
await copyServerContent(
4342
resolve(PUBLISH_DIR, 'standalone/.next'),
4443
resolve(SERVER_HANDLER_DIR, '.next'),
4544
)
46-
await linkServerDependencies(
45+
await copyServerDependencies(
4746
resolve(PUBLISH_DIR, 'standalone/node_modules'),
4847
resolve(SERVER_HANDLER_DIR, 'node_modules'),
4948
)

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { NetlifyPluginOptions } from '@netlify/build'
22
import { restoreBuildCache, saveBuildCache } from './build/cache.js'
33
import { setBuildConfig, setDeployConfig } from './build/config.js'
44
import { uploadPrerenderedContent } from './build/content/prerendered.js'
5-
import { linkStaticAssets, uploadStaticContent } from './build/content/static.js'
5+
import { copyStaticAssets, uploadStaticContent } from './build/content/static.js'
66
import { createServerHandler } from './build/functions/server.js'
77

88
export const onPreBuild = async ({ constants, utils }: NetlifyPluginOptions) => {
@@ -14,7 +14,7 @@ export const onBuild = async ({ constants, utils }: NetlifyPluginOptions) => {
1414
await saveBuildCache({ constants, utils })
1515

1616
return Promise.all([
17-
linkStaticAssets({ constants }),
17+
copyStaticAssets({ constants }),
1818
uploadStaticContent({ constants }),
1919
uploadPrerenderedContent({ constants }),
2020
createServerHandler({ constants }),

0 commit comments

Comments
 (0)