Skip to content

Commit d4640c8

Browse files
committed
feat: unstableNetlifyFunctionsSupport.includeDirs configuration
1 parent 4a920f2 commit d4640c8

File tree

4 files changed

+1011
-405
lines changed

4 files changed

+1011
-405
lines changed

helpers/copyUnstableIncludedDirs.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
const path = require('path')
2+
const fs = require('fs')
3+
const AdmZip = require('adm-zip')
4+
const getNetlifyFunctionName = require('../src/lib/helpers/getNetlifyFunctionName')
5+
6+
// This is UNSTABLE support for special use cases needing files served with their Next.js
7+
// pages that become Netlify functions. Eventually this will be supported internally.
8+
const copyUnstableIncludedDirs = ({ nextConfig, functionsDist }) => {
9+
for (const name in nextConfig.unstableNetlifyFunctionsSupport || {}) {
10+
const includeDirs = nextConfig.unstableNetlifyFunctionsSupport[name].includeDirs || []
11+
console.log('Processing included dirs for ', name)
12+
13+
const zipName = path.join(functionsDist, getNetlifyFunctionName(name) + '.zip')
14+
const zip = new AdmZip(zipName)
15+
includeDirs.forEach((includes) => {
16+
if (fs.lstatSync(includes).isDirectory()) {
17+
// We add the files at the root of the ZIP because process.cwd()
18+
// points to `/` in serverless functions
19+
zip.addLocalFolder(includes, includes)
20+
console.log(`Added ${includes} to ${zipName}`)
21+
}
22+
})
23+
zip.writeZip(zipName)
24+
}
25+
}
26+
27+
module.exports = copyUnstableIncludedDirs

index.js

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ const nextOnNetlify = require('./src/index.js')
77

88
const validateNextUsage = require('./helpers/validateNextUsage')
99
const doesNotNeedPlugin = require('./helpers/doesNotNeedPlugin')
10+
const getNextConfig = require('./helpers/getNextConfig')
11+
const copyUnstableIncludedDirs = require('./helpers/copyUnstableIncludedDirs')
1012

1113
const pWriteFile = util.promisify(fs.writeFile)
1214

@@ -58,6 +60,14 @@ module.exports = {
5860

5961
await nextOnNetlify({ functionsDir: FUNCTIONS_SRC, publishDir: PUBLISH_DIR })
6062
},
63+
async onPostBuild({ netlifyConfig, packageJson, constants: { FUNCTIONS_DIST }, utils }) {
64+
if (await doesNotNeedPlugin({ netlifyConfig, packageJson, utils })) {
65+
return
66+
}
67+
68+
const nextConfig = await getNextConfig(utils.failBuild)
69+
copyUnstableIncludedDirs({ nextConfig, functionsDist: FUNCTIONS_DIST })
70+
},
6171
}
6272

6373
const DEFAULT_FUNCTIONS_SRC = 'netlify/functions'

0 commit comments

Comments
 (0)