
Instead of dynamically loading a <script> tag. This also removes the non-module lightweight build.
104 lines
3.1 KiB
JavaScript
104 lines
3.1 KiB
JavaScript
import { builtinModules } from 'module';
|
|
|
|
import resolve from '@rollup/plugin-node-resolve';
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
import replace from '@rollup/plugin-replace';
|
|
import { terser } from "rollup-plugin-terser";
|
|
|
|
import pkg from './package.json';
|
|
|
|
const nodeDependencies = Object.keys(pkg.dependencies);
|
|
|
|
const banner =
|
|
`/*! OpenPGP.js v${pkg.version} - ` +
|
|
`${new Date().toISOString().split('T')[0]} - ` +
|
|
`this is LGPL licensed code, see LICENSE/our website ${pkg.homepage} for more information. */`;
|
|
|
|
const intro = `const globalThis = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};`;
|
|
|
|
const terserOptions = {
|
|
ecma: 2017,
|
|
compress: {
|
|
unsafe: true
|
|
}
|
|
};
|
|
|
|
export default [
|
|
{
|
|
input: 'src/index.js',
|
|
output: [
|
|
{ file: 'dist/openpgp.js', format: 'iife', name: pkg.name, banner, intro },
|
|
{ file: 'dist/openpgp.min.js', format: 'iife', name: pkg.name, banner, intro, plugins: [terser(terserOptions)] },
|
|
{ file: 'dist/openpgp.mjs', format: 'es', banner, intro },
|
|
{ file: 'dist/openpgp.min.mjs', format: 'es', banner, intro, plugins: [terser(terserOptions)] }
|
|
],
|
|
inlineDynamicImports: true,
|
|
plugins: [
|
|
resolve({
|
|
browser: true
|
|
}),
|
|
commonjs({
|
|
ignore: builtinModules.concat(nodeDependencies)
|
|
}),
|
|
replace({
|
|
'OpenPGP.js VERSION': `OpenPGP.js ${pkg.version}`,
|
|
'require(': 'void(',
|
|
delimiters: ['', '']
|
|
})
|
|
]
|
|
},
|
|
{
|
|
input: 'src/index.js',
|
|
inlineDynamicImports: true,
|
|
external: builtinModules.concat(nodeDependencies),
|
|
output: [
|
|
{ file: 'dist/node/openpgp.js', format: 'cjs', name: pkg.name, banner, intro },
|
|
{ file: 'dist/node/openpgp.min.js', format: 'cjs', name: pkg.name, banner, intro, plugins: [terser(terserOptions)] },
|
|
{ file: 'dist/node/openpgp.mjs', format: 'es', banner, intro },
|
|
{ file: 'dist/node/openpgp.min.mjs', format: 'es', banner, intro, plugins: [terser(terserOptions)] }
|
|
],
|
|
plugins: [
|
|
resolve(),
|
|
commonjs(),
|
|
replace({
|
|
'OpenPGP.js VERSION': `OpenPGP.js ${pkg.version}`,
|
|
})
|
|
]
|
|
},
|
|
{
|
|
input: 'src/index.js',
|
|
output: [
|
|
{ dir: 'dist/lightweight', entryFileNames: 'openpgp.mjs', chunkFileNames: '[name].mjs', format: 'es', banner, intro },
|
|
{ dir: 'dist/lightweight', entryFileNames: 'openpgp.min.mjs', chunkFileNames: '[name].min.mjs', format: 'es', banner, intro, plugins: [terser(terserOptions)] }
|
|
],
|
|
preserveEntrySignatures: 'allow-extension',
|
|
plugins: [
|
|
resolve({
|
|
browser: true
|
|
}),
|
|
commonjs({
|
|
ignore: builtinModules.concat(nodeDependencies)
|
|
}),
|
|
replace({
|
|
'OpenPGP.js VERSION': `OpenPGP.js ${pkg.version}`,
|
|
'require(': 'void(',
|
|
delimiters: ['', '']
|
|
})
|
|
]
|
|
},
|
|
{
|
|
input: 'test/unittests.js',
|
|
output: [
|
|
{ file: 'test/lib/unittests-bundle.js', format: 'es' },
|
|
],
|
|
plugins: [
|
|
resolve({
|
|
browser: true
|
|
}),
|
|
commonjs({
|
|
ignore: builtinModules.concat(nodeDependencies).concat(['../..', '../../..'])
|
|
})
|
|
]
|
|
}
|
|
];
|