116 lines
2.4 KiB
JavaScript
116 lines
2.4 KiB
JavaScript
import commonjs from 'rollup-plugin-commonjs';
|
|
import json from 'rollup-plugin-json';
|
|
import multiEntry from 'rollup-plugin-multi-entry';
|
|
import replace from 'rollup-plugin-replace';
|
|
import resolve from 'rollup-plugin-node-resolve';
|
|
import tslint from 'rollup-plugin-tslint';
|
|
import typescript from 'rollup-plugin-typescript2';
|
|
|
|
const metadata = require('../package.json');
|
|
const shebang = '#! /usr/bin/env node';
|
|
|
|
const bundle = {
|
|
external: [
|
|
'dtrace-provider',
|
|
],
|
|
input: [
|
|
'src/index.ts',
|
|
'test/harness.ts',
|
|
'test/**/Test*.ts',
|
|
],
|
|
manualChunks(id) {
|
|
if (id.includes('/test/') /* || id.includes('/chai/') */ || id.includes('/sinon/')) {
|
|
return 'test'
|
|
}
|
|
|
|
if (id.includes('/node_modules/')) {
|
|
return 'vendor';
|
|
}
|
|
|
|
if (id.includes('/src/index')) {
|
|
return 'index';
|
|
}
|
|
|
|
if (id.includes('/src/')) {
|
|
return 'main';
|
|
}
|
|
},
|
|
output: {
|
|
dir: 'out/',
|
|
chunkFileNames: '[name].js',
|
|
entryFileNames: 'entry-[name].js',
|
|
format: 'cjs',
|
|
sourcemap: true,
|
|
banner: () => {
|
|
return shebang + '\n\n';
|
|
},
|
|
},
|
|
plugins: [
|
|
multiEntry(),
|
|
json(),
|
|
replace({
|
|
delimiters: ['{{ ', ' }}'],
|
|
values: {
|
|
BUILD_JOB: process.env['CI_JOB_ID'],
|
|
BUILD_RUNNER: process.env['CI_RUNNER_DESCRIPTION'],
|
|
GIT_BRANCH: process.env['CI_COMMIT_REF_SLUG'],
|
|
GIT_COMMIT: process.env['CI_COMMIT_SHA'],
|
|
NODE_VERSION: process.env['NODE_VERSION'],
|
|
PACKAGE_NAME: metadata.name,
|
|
PACKAGE_VERSION: metadata.version,
|
|
},
|
|
}),
|
|
resolve({
|
|
preferBuiltins: true,
|
|
}),
|
|
commonjs({
|
|
namedExports: {
|
|
'node_modules/chai/index.js': [
|
|
'expect',
|
|
],
|
|
'node_modules/deep-diff/index.js': [
|
|
'applyDiff',
|
|
'diff',
|
|
],
|
|
'node_modules/lodash/lodash.js': [
|
|
'cloneDeep',
|
|
'defaultTo',
|
|
'intersection',
|
|
'isNil',
|
|
'isString',
|
|
'kebabCase',
|
|
],
|
|
'node_modules/noicejs/out/main-bundle.js': [
|
|
'BaseError',
|
|
'ConsoleLogger',
|
|
'logWithLevel',
|
|
],
|
|
'node_modules/js-yaml/index.js': [
|
|
'DEFAULT_SAFE_SCHEMA',
|
|
'SAFE_SCHEMA',
|
|
'safeDump',
|
|
'safeLoad',
|
|
'safeLoadAll',
|
|
'Schema',
|
|
'Type',
|
|
],
|
|
'node_modules/yargs/index.js': [
|
|
'showCompletionScript',
|
|
'usage',
|
|
],
|
|
},
|
|
}),
|
|
tslint({
|
|
configuration: './config/tslint.json',
|
|
throwOnError: true,
|
|
}),
|
|
typescript({
|
|
cacheRoot: 'out/cache/rts2',
|
|
rollupCommonJSResolveHack: true,
|
|
}),
|
|
],
|
|
};
|
|
|
|
export default [
|
|
bundle,
|
|
]; |