49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
import { defineExternal, definePlugins } from '@gera2ld/plaid-rollup';
|
|
import { defineConfig } from 'rollup';
|
|
import userscript from 'rollup-plugin-userscript';
|
|
import typescript from '@rollup/plugin-typescript';
|
|
import pkg from './package.json' with { type: 'json' };
|
|
|
|
export default defineConfig(
|
|
Object.entries({
|
|
'linkedin': 'src/linkedin/index.ts',
|
|
}).map(([name, entry]) => ({
|
|
input: entry,
|
|
plugins: [
|
|
...definePlugins({
|
|
esm: true,
|
|
minimize: false,
|
|
postcss: {
|
|
inject: false,
|
|
minimize: true,
|
|
},
|
|
extensions: ['.ts', '.tsx', '.mjs', '.js', '.jsx'],
|
|
}),
|
|
userscript((meta) => meta.replace('process.env.AUTHOR', pkg.author)),
|
|
typescript({ sourceMap: true, inlineSources: true }),
|
|
],
|
|
external: defineExternal([
|
|
'@violentmonkey/ui',
|
|
//'@violentmonkey/dom',
|
|
'solid-js',
|
|
'solid-js/web',
|
|
]),
|
|
output: {
|
|
sourcemap: true,
|
|
sourcemapBaseUrl: 'https://gitea.fxreader.online/fxreader.online/freelance-project-34-marketing-blog/media/branch/master/deps/greasyfork/dist/',
|
|
format: 'iife',
|
|
file: `dist/${name}.user.js`,
|
|
globals: {
|
|
// Note:
|
|
// - VM.solid is just a third-party UMD bundle for solid-js since there is no official one
|
|
// - If you don't want to use it, just remove `solid-js` related packages from `external`, `globals` and the `meta.js` file.
|
|
'solid-js': 'VM.solid',
|
|
'solid-js/web': 'VM.solid.web',
|
|
//'@violentmonkey/dom': 'VM',
|
|
'@violentmonkey/ui': 'VM',
|
|
},
|
|
indent: false,
|
|
},
|
|
})),
|
|
);
|