-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrollup.config.mjs
131 lines (124 loc) · 3.63 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
import path from 'node:path'
import { pathToFileURL } from 'node:url'
import glob from 'glob'
import serve from 'rollup-plugin-serve'
import pkg from './package.json' assert { type: 'json' }
const { version } = pkg
console.info(`Scriptable Template v${version}\r\n`)
const config = {
author: 'Honye',
input: 'src/*.js',
exclude: [
'src/*.module.js',
'src/no-background.js',
'src/Config.js'
],
dest: 'dist'
}
const files = glob.sync(config.input, { ignore: config.exclude || [] })
/** @type {import('rollup').RollupOptions[]} */
const modules = []
for (const filename of files) {
const matches = filename.match(/(^.+?)(\.js)$/)
if (matches) {
const [, suffix] = matches.splice(1)
let conf = {}
try {
const confPath = path.resolve(filename.replace(new RegExp(`${suffix}$`), '.json'))
const confModule = await import(pathToFileURL(confPath), { assert: { type: 'json' } })
conf = confModule.default
} catch (e) {}
const annotations = []
if (conf.description) {
const { description } = conf
if (Array.isArray(description)) {
for (const item of description) {
annotations.push(` * ${item}`)
}
} else {
annotations.push(` * ${description}`)
}
annotations.push(' *')
}
annotations.push(` * @version ${conf.version || '1.0.0'}`)
if (config.author) {
annotations.push(` * @author ${conf.author || config.author}`)
}
const banners = [
'/**\n' + annotations.join('\n') + '\n */\n'
]
if (conf.setting) {
const { setting } = conf
const items = []
for (const key in setting) {
items.push(`${key}: ${setting[key]};`)
}
if (items.length) {
banners.unshift(
'// Variables used by Scriptable.\n' +
'// These must be at the very top of the file. Do not edit.\n' +
`// ${items.join(' ')}`
)
}
}
const plugins = [
// transform `module.exports`
{
/**
* @param {string} code
*/
transform (code) {
return code.replace(/module\.exports\s* =\s*{/g, 'export {')
.replace(/module\.exports\s* =/g, 'export default ')
.replace(/(?:module\.)?exports\.(\w+)\s*=/g, (str, name) => {
return `export const ${name} =`
})
}
},
// remove the secondary code
{
transform (code) {
return code.replace("if (typeof require === 'undefined') require = importModule", '')
}
},
// transform `importModule('utils')`/`require('utils')`
{
/**
* @param {string} code
*/
transform (code) {
return code.replace(
/((?:let)|(?:const)|(?:var))\s*((?:\w+)|(?:\{.*\}))\s*=\s*(?:importModule|require)\('(.*?)'\)/g,
(str, declaration, imported, moduleName) => {
return `import ${imported.replace(/:/g, ' as ')} from "./${moduleName}"`
}
)
.replace(
/(?:let|const)\s*{([\s\S]*?)\}\s*=\s*(?:importModule|require)\('(.*?)'\)/,
"import {$1} from '$2'"
)
}
}
]
modules.push({
input: filename,
context: 'this',
output: {
banner: banners.join('\n'),
file: path.join(
config.dest,
conf.name ? (conf.name + suffix) : path.relative('src', filename)
),
format: 'es'
},
plugins:
process.env.NODE_ENV === 'development'
? [
...plugins,
serve(config.dest)
]
: [...plugins]
})
}
}
export default modules