-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
157 lines (137 loc) · 3.84 KB
/
rollup.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import typescript from '@rollup/plugin-typescript'
import jsonPlugin from '@rollup/plugin-json'
import licensePlugin from 'rollup-plugin-license'
import dtsPlugin from 'rollup-plugin-dts'
import replace from '@rollup/plugin-replace'
import { join } from 'path'
import nodeResolve from '@rollup/plugin-node-resolve'
import copyPlugin from 'rollup-plugin-copy'
import commonjs from '@rollup/plugin-commonjs'
import dotenv from 'dotenv'
import packageJson from './package.json' assert { type: 'json' }
dotenv.config()
const outputDirectory = 'dist'
function getEnv(key, defaultValue) {
const value = process.env[key]
if (value) {
return value
}
if (defaultValue) {
console.warn(`Missing environment variable "${key}". Using default value: ${defaultValue}`)
return defaultValue
}
throw new Error(`Missing environment variable ${key}`)
}
function makeConfig(opts, entryFile, artifactName, functionJsonPath, transformFunctionJson) {
const isDev = opts.watch
const buildFlags = {
isForRelease: !isDev && process.env.IS_RELEASE_BUILD === 'true',
}
if (buildFlags.isForRelease) {
console.info('Building for release')
}
const commonBanner = licensePlugin({
banner: {
content: {
file: join('assets', 'license_banner.txt'),
},
},
})
const env = {
fpcdn: getEnv('FPCDN', 'fpcdn.io'),
ingressApi: getEnv('INGRESS_API', 'api.fpjs.io'),
}
/**
* @type {import('rollup').RollupOptions}
* */
const commonInput = {
input: entryFile,
external: ['https'],
plugins: [
copyPlugin({
targets: [
{
src: functionJsonPath,
dest: `${outputDirectory}/${artifactName}`,
transform: (contents) => {
const json = JSON.parse(contents.toString())
if (json.disabled) {
console.warn(
`Function ${artifactName} is disabled. To enable it, set "disabled" to false in ${functionJsonPath}.`,
)
}
json.scriptFile = `./${artifactName}.js`
transformFunctionJson?.(json, isDev)
return JSON.stringify(json, null, 2)
},
},
],
}),
jsonPlugin(),
typescript({
tsconfig: 'tsconfig.app.json',
}),
commonjs(),
nodeResolve({ preferBuiltins: false }),
replace({
__FPCDN__: env.fpcdn,
__INGRESS_API__: env.ingressApi,
__azure_function_version__: packageJson.version,
preventAssignment: true,
}),
commonBanner,
],
}
/**
* @type {import('rollup').OutputOptions}
* */
const commonOutput = {
exports: 'named',
sourcemap: !buildFlags.isForRelease,
}
const output = [
{
...commonInput,
output: [
{
...commonOutput,
file: `${outputDirectory}/${artifactName}/${artifactName}.js`,
format: 'cjs',
},
],
},
]
if (!buildFlags.isForRelease) {
output.push({
...commonInput,
plugins: [dtsPlugin(), commonBanner],
output: {
file: `${outputDirectory}/${artifactName}/${artifactName}.d.ts`,
format: 'es',
},
})
}
return output
}
export default (opts) => {
/**
* @type {import('rollup').RollupOptions[]}
* */
return [
...makeConfig(opts, 'proxy/index.ts', 'fingerprint-pro-azure-function', 'proxy/function.json'),
...makeConfig(
opts,
'management/index.ts',
'fingerprint-pro-azure-function-management',
'management/function.json',
(config, isDev) => {
if (!isDev && config.bindings[0].runOnStartup) {
console.info(
`Management function is configured to run on startup, but this can cause problems when deployed to Azure. Setting to false`,
)
config.bindings[0].runOnStartup = false
}
},
),
]
}