2020-04-06 22:49:13 +00:00
|
|
|
'use strict'
|
|
|
|
|
2023-04-11 08:43:47 +00:00
|
|
|
import inject from '@rollup/plugin-inject'
|
2021-08-06 22:14:30 +00:00
|
|
|
import { nodeResolve as resolve } from '@rollup/plugin-node-resolve'
|
|
|
|
import replace from '@rollup/plugin-replace'
|
2023-04-11 08:43:47 +00:00
|
|
|
import terser from '@rollup/plugin-terser'
|
2021-08-06 22:14:30 +00:00
|
|
|
import typescriptPlugin from '@rollup/plugin-typescript'
|
|
|
|
import commonjs from '@rollup/plugin-commonjs'
|
2022-01-17 10:04:55 +00:00
|
|
|
import json from '@rollup/plugin-json'
|
2020-04-06 22:49:13 +00:00
|
|
|
|
2023-04-11 08:43:47 +00:00
|
|
|
import { dirname, join } from 'path'
|
|
|
|
import { existsSync, readFileSync } from 'fs'
|
|
|
|
|
|
|
|
// import { browser, name as _name, exports } from '../package.json' assert { type: 'json' }
|
2022-01-17 10:04:55 +00:00
|
|
|
import { compile } from './rollup-plugin-dts.js'
|
2020-04-06 22:49:13 +00:00
|
|
|
|
2023-04-11 08:43:47 +00:00
|
|
|
import * as url from 'url'
|
|
|
|
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
|
|
|
|
|
2021-08-06 22:14:30 +00:00
|
|
|
const rootDir = join(__dirname, '..')
|
2023-04-11 08:43:47 +00:00
|
|
|
const pkgJson = JSON.parse(readFileSync(join(rootDir, 'package.json')))
|
|
|
|
// const dstDir = join(rootDir, directories.dist)
|
2021-08-06 22:14:30 +00:00
|
|
|
const srcDir = join(rootDir, 'src', 'ts')
|
2020-04-06 22:49:13 +00:00
|
|
|
|
|
|
|
function camelise (str) {
|
|
|
|
return str.replace(/-([a-z])/g,
|
|
|
|
function (m, w) {
|
|
|
|
return w.toUpperCase()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-24 13:04:30 +00:00
|
|
|
const regex = /^(?:(?<scope>@.*?)\/)?(?<name>.*)/ // We are going to take only the package name part if there is a scope, e.g. @my-org/package-name
|
2023-04-11 08:43:47 +00:00
|
|
|
const { name } = pkgJson.name.match(regex).groups
|
2021-03-24 13:04:30 +00:00
|
|
|
const pkgCamelisedName = camelise(name)
|
2020-04-06 22:49:13 +00:00
|
|
|
|
2021-08-06 22:14:30 +00:00
|
|
|
const input = join(srcDir, 'index.ts')
|
|
|
|
if (existsSync(input) !== true) throw new Error('The entry point should be index.ts')
|
2021-03-24 13:04:30 +00:00
|
|
|
|
|
|
|
const tsBundleOptions = {
|
2021-08-06 22:14:30 +00:00
|
|
|
tsconfig: join(rootDir, 'tsconfig.json'),
|
|
|
|
outDir: undefined, // ignore outDir in tsconfig.json
|
2022-01-17 10:04:55 +00:00
|
|
|
include: ['src/ts/**/*', 'build/typings/is-browser.d.ts'],
|
|
|
|
exclude: ['src/**/*.spec.ts']
|
2021-03-24 13:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const sourcemapOutputOptions = {
|
|
|
|
sourcemap: 'inline',
|
|
|
|
sourcemapExcludeSources: true
|
|
|
|
}
|
2020-04-06 22:49:13 +00:00
|
|
|
|
2022-01-17 10:04:55 +00:00
|
|
|
function compileDts () {
|
2021-08-06 22:14:30 +00:00
|
|
|
return {
|
2022-01-17 10:04:55 +00:00
|
|
|
name: 'compile-dts',
|
2021-08-06 22:14:30 +00:00
|
|
|
closeBundle () {
|
2022-01-17 10:04:55 +00:00
|
|
|
compile()
|
2021-08-06 22:14:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default [
|
2023-04-11 08:43:47 +00:00
|
|
|
{ // Browser ESM bundle
|
|
|
|
input,
|
2020-04-06 22:49:13 +00:00
|
|
|
output: [
|
|
|
|
{
|
2023-04-11 08:43:47 +00:00
|
|
|
file: join(rootDir, pkgJson.browser),
|
2021-03-24 13:04:30 +00:00
|
|
|
...sourcemapOutputOptions,
|
2020-04-08 09:53:15 +00:00
|
|
|
format: 'es'
|
2020-04-06 22:49:13 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
replace({
|
2023-04-11 08:43:47 +00:00
|
|
|
IS_BROWSER: true,
|
|
|
|
_MODULE_TYPE: "'ESM'",
|
2021-03-24 13:04:30 +00:00
|
|
|
preventAssignment: true
|
|
|
|
}),
|
2022-01-17 10:04:55 +00:00
|
|
|
typescriptPlugin(tsBundleOptions),
|
2022-10-03 15:35:35 +00:00
|
|
|
commonjs({ extensions: ['.js', '.cjs', '.ts', '.jsx', '.cjsx', '.tsx'] }), // the ".ts" extension is required
|
2022-01-17 10:04:55 +00:00
|
|
|
json()
|
2022-10-03 15:35:35 +00:00
|
|
|
]
|
|
|
|
},
|
2023-04-11 08:43:47 +00:00
|
|
|
{ // Browser bundles
|
|
|
|
input,
|
2022-10-03 15:35:35 +00:00
|
|
|
output: [
|
|
|
|
{
|
2023-04-11 08:43:47 +00:00
|
|
|
file: join(rootDir, pkgJson.exports['./esm-browser-bundle-nomin']),
|
|
|
|
format: 'es'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
file: join(rootDir, pkgJson.exports['./esm-browser-bundle']),
|
|
|
|
format: 'es',
|
|
|
|
plugins: [terser()]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
file: join(rootDir, pkgJson.exports['./iife-browser-bundle']),
|
|
|
|
format: 'iife',
|
|
|
|
name: pkgCamelisedName,
|
|
|
|
plugins: [terser()]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
file: join(rootDir, pkgJson.exports['./umd-browser-bundle']),
|
|
|
|
format: 'umd',
|
|
|
|
name: pkgCamelisedName,
|
|
|
|
plugins: [terser()]
|
2022-10-03 15:35:35 +00:00
|
|
|
}
|
2021-03-24 13:04:30 +00:00
|
|
|
],
|
2022-10-03 15:35:35 +00:00
|
|
|
plugins: [
|
|
|
|
replace({
|
2023-04-11 08:43:47 +00:00
|
|
|
IS_BROWSER: true,
|
|
|
|
_MODULE_TYPE: "'BUNDLE'",
|
2022-10-03 15:35:35 +00:00
|
|
|
preventAssignment: true
|
|
|
|
}),
|
2023-04-11 08:43:47 +00:00
|
|
|
typescriptPlugin({
|
|
|
|
...tsBundleOptions,
|
|
|
|
sourceMap: false
|
|
|
|
}),
|
|
|
|
resolve({
|
|
|
|
browser: true,
|
|
|
|
exportConditions: ['browser', 'default'],
|
|
|
|
mainFields: ['browser', 'module', 'main']
|
|
|
|
}),
|
2022-10-03 15:35:35 +00:00
|
|
|
commonjs({ extensions: ['.js', '.cjs', '.ts', '.jsx', '.cjsx', '.tsx'] }), // the ".ts" extension is required
|
|
|
|
json()
|
|
|
|
]
|
2020-04-06 22:49:13 +00:00
|
|
|
},
|
2023-04-11 08:43:47 +00:00
|
|
|
{ // Node CJS
|
|
|
|
input,
|
2020-04-06 22:49:13 +00:00
|
|
|
output: [
|
|
|
|
{
|
2023-04-11 08:43:47 +00:00
|
|
|
file: join(rootDir, pkgJson.exports['.'].node.require.default),
|
2022-10-03 15:35:35 +00:00
|
|
|
...sourcemapOutputOptions,
|
2023-04-11 08:43:47 +00:00
|
|
|
format: 'cjs',
|
|
|
|
exports: 'auto',
|
|
|
|
plugins: [
|
|
|
|
terser()
|
|
|
|
]
|
2020-04-06 22:49:13 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
replace({
|
2023-04-11 08:43:47 +00:00
|
|
|
IS_BROWSER: false,
|
|
|
|
_MODULE_TYPE: "'CJS'",
|
2021-03-24 13:04:30 +00:00
|
|
|
preventAssignment: true
|
2020-04-06 22:49:13 +00:00
|
|
|
}),
|
2023-04-11 08:43:47 +00:00
|
|
|
inject({
|
|
|
|
crypto: ['crypto', 'webcrypto']
|
2021-03-24 13:04:30 +00:00
|
|
|
}),
|
2023-04-11 08:43:47 +00:00
|
|
|
typescriptPlugin(tsBundleOptions),
|
|
|
|
// resolve({
|
|
|
|
// browser: false,
|
|
|
|
// exportConditions: ['require', 'node', 'module', 'import']
|
|
|
|
// }),
|
2022-10-03 15:35:35 +00:00
|
|
|
commonjs({ extensions: ['.js', '.cjs', '.ts', '.jsx', '.cjsx', '.tsx'] }), // the ".ts" extension is required
|
2022-01-17 10:04:55 +00:00
|
|
|
json()
|
|
|
|
]
|
2021-03-24 13:04:30 +00:00
|
|
|
},
|
2023-04-11 08:43:47 +00:00
|
|
|
{ // Node ESM and type declarations
|
|
|
|
input,
|
2021-08-06 22:14:30 +00:00
|
|
|
output: [
|
|
|
|
{
|
2023-04-11 08:43:47 +00:00
|
|
|
file: join(rootDir, pkgJson.exports['.'].node.import.default),
|
|
|
|
...sourcemapOutputOptions,
|
|
|
|
format: 'es',
|
|
|
|
plugins: [
|
|
|
|
terser()
|
|
|
|
]
|
2021-08-06 22:14:30 +00:00
|
|
|
}
|
|
|
|
],
|
2020-04-06 22:49:13 +00:00
|
|
|
plugins: [
|
|
|
|
replace({
|
2023-04-11 08:43:47 +00:00
|
|
|
IS_BROWSER: false,
|
|
|
|
_MODULE_TYPE: "'ESM'",
|
|
|
|
__filename: `'${pkgJson.exports['.'].node.import.default}'`,
|
|
|
|
__dirname: `'${dirname(pkgJson.exports['.'].node.import.default)}'`,
|
2021-03-24 13:04:30 +00:00
|
|
|
preventAssignment: true
|
|
|
|
}),
|
2023-04-11 08:43:47 +00:00
|
|
|
inject({
|
|
|
|
crypto: ['crypto', 'webcrypto']
|
2022-10-03 15:35:35 +00:00
|
|
|
}),
|
2023-04-11 08:43:47 +00:00
|
|
|
typescriptPlugin(tsBundleOptions),
|
|
|
|
// resolve({
|
|
|
|
// browser: false,
|
|
|
|
// exportConditions: ['node']
|
|
|
|
// }),
|
|
|
|
compileDts(),
|
2022-01-17 10:04:55 +00:00
|
|
|
commonjs({ extensions: ['.js', '.cjs', '.ts', '.jsx', '.cjsx', '.tsx'] }), // the ".ts" extension is required
|
|
|
|
json()
|
2022-10-03 15:35:35 +00:00
|
|
|
]
|
2020-04-06 22:49:13 +00:00
|
|
|
}
|
|
|
|
]
|