-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
200 lines (174 loc) · 5.35 KB
/
rollup.config.js
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
import fs from 'fs'
import path from 'path'
import emblaPackageJson from 'nearyjs/package.json'
import babel from '@rollup/plugin-babel'
import typescript from '@rollup/plugin-typescript'
import resolve from '@rollup/plugin-node-resolve'
import terser from '@rollup/plugin-terser'
const FOLDERS = {
ESM: 'esm',
CJS: 'cjs',
UMD: 'umd',
OUT: './'
}
const CONFIG_GLOBALS = {
[emblaPackageJson.name]: kebabToPascalCase(emblaPackageJson.name)
}
const CONFIG_EXTERNAL_MODULES = {
moduleDirectories: ['node_modules']
}
const CONFIG_BABEL = {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
exclude: 'node_modules/**',
babelHelpers: 'bundled'
}
const CONFIG_TYPESCRIPT = {
tsconfig: path.join(__dirname, 'tsconfig.json')
}
function CONFIG_EXTERNAL_MODULE_SUPPRESS(warning, next) {
if (warning.code === 'INPUT_HOOK_IN_OUTPUT_PLUGIN') return
next(warning)
}
function kebabToPascalCase(string = '') {
return string.replace(/(^\w|-\w)/g, (replaceString) =>
replaceString.replace(/-/, '').toUpperCase()
)
}
function addImportExtensions(content, extension = 'js') {
return content.replace(/from\s'.\/(.*)';/g, (match) =>
match.replace(/';/g, `.${extension}';`)
)
}
function readFiles(dirname, onFileContent, onError) {
fs.readdirSync(dirname, { withFileTypes: true }).forEach((entry) => {
if (entry.isDirectory()) {
return readFiles(dirname + entry.name + '/', onFileContent, onError)
}
fs.readFile(dirname + entry.name, 'utf-8', (error, content) => {
if (error) return onError(error)
onFileContent(dirname + entry.name, content)
})
})
}
function createBuildPath(packageJson, format) {
const fileName = `${packageJson.name}.${format}.js`
if (format === 'umd') return path.join(FOLDERS.OUT, fileName)
return path.join(FOLDERS.OUT, format, fileName)
}
function createNodeNextSupportForPackage() {
const workspacePath = process.cwd()
const packageJsonPath = path.join(workspacePath, 'package.json')
const workspacePackageJson = fs.readFileSync(packageJsonPath, 'utf-8')
if (!workspacePackageJson) return
const outFolder = path.join(workspacePath, FOLDERS.OUT)
const esmFolder = path.join(workspacePath, FOLDERS.OUT, FOLDERS.ESM)
const cjsFolder = path.join(workspacePath, FOLDERS.OUT, FOLDERS.CJS)
const packageJson = JSON.parse(workspacePackageJson)
const packageJsonMain = {
...packageJson,
// repository: {
// type: "git",
// url: "git+https://github.com/davidjerleke/embla-carousel",
// },
// bugs: {
// url: "https://github.com/davidjerleke/embla-carousel/issues",
// },
// homepage: "https://www.embla-carousel.com",
license: 'MIT',
keywords: [
'neary',
'cursor',
'lightweight',
'proximity',
'near',
'javascript',
'typescript',
'react',
'react-hook'
],
files: [
`${packageJson.name}*`,
'components/**/*',
'index.d.ts',
'esm/**/*',
'cjs/**/*'
],
sideEffects: false,
unpkg: `${packageJson.name}.umd.js`,
main: `${packageJson.name}.umd.js`,
module: `./${FOLDERS.ESM}/${packageJson.name}.${FOLDERS.ESM}.js`,
types: 'index.d.ts',
exports: {
'./package.json': './package.json',
'.': {
import: {
types: `./${FOLDERS.ESM}/index.d.ts`,
default: `./${FOLDERS.ESM}/${packageJson.name}.${FOLDERS.ESM}.js`
},
require: {
types: `./${FOLDERS.CJS}/index.d.ts`,
default: `./${FOLDERS.CJS}/${packageJson.name}.${FOLDERS.CJS}.js`
}
}
}
}
const propsToDelete = ['scripts', 'exports', 'main', 'unpkg', 'module']
propsToDelete.forEach((prop) => delete packageJson[prop])
const files = [`${packageJson.name}*`, 'components/**/*', 'index.d.ts']
const packageJsonEsm = {
...packageJson,
module: `${packageJson.name}.${FOLDERS.ESM}.js`,
files,
type: 'module'
}
const packageJsonCjs = {
...packageJson,
main: `${packageJson.name}.${FOLDERS.CJS}.js`,
files,
type: 'commonjs'
}
if (!fs.existsSync(outFolder)) fs.mkdirSync(outFolder)
if (!fs.existsSync(esmFolder)) fs.mkdirSync(esmFolder)
if (!fs.existsSync(cjsFolder)) fs.mkdirSync(cjsFolder)
fs.writeFileSync(
path.join(outFolder, 'package.json'),
JSON.stringify(packageJsonMain, null, '\t')
)
fs.writeFileSync(
path.join(esmFolder, 'package.json'),
JSON.stringify(packageJsonEsm, null, '\t')
)
fs.writeFileSync(
path.join(cjsFolder, 'package.json'),
JSON.stringify(packageJsonCjs, null, '\t')
)
const esmTypesFilePath = path.join(esmFolder, 'index.d.ts')
const esmTypesFile = fs.readFileSync(esmTypesFilePath, 'utf-8')
const esmTypesFileWithImportExtensions = addImportExtensions(esmTypesFile)
fs.writeFileSync(esmTypesFilePath, esmTypesFileWithImportExtensions)
readFiles(path.join(esmFolder, 'components/'), (filename, fileContent) => {
const fileContentWithImportExtensions = addImportExtensions(fileContent)
fs.writeFile(filename, fileContentWithImportExtensions, (error) => {})
})
}
function createNodeNextSupport() {
return {
name: 'createNodeNextSupport',
closeBundle: createNodeNextSupportForPackage
}
}
export {
FOLDERS,
CONFIG_BABEL,
CONFIG_TYPESCRIPT,
CONFIG_GLOBALS,
CONFIG_EXTERNAL_MODULES,
CONFIG_EXTERNAL_MODULE_SUPPRESS,
babel,
typescript,
resolve,
terser,
createBuildPath,
kebabToPascalCase,
createNodeNextSupport
}