redoc/webpack.config.ts

124 lines
3.5 KiB
TypeScript
Raw Normal View History

2018-05-17 11:40:47 +03:00
/* tslint:disable:no-implicit-dependencies */
2020-07-25 19:06:22 +03:00
import ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
2018-05-17 11:40:47 +03:00
import * as webpack from 'webpack';
2018-03-17 16:11:52 +03:00
import * as path from 'path';
import { webpackIgnore } from './config/webpack-utils';
2017-11-20 01:59:28 +03:00
const nodeExternals = require('webpack-node-externals')({
2019-12-10 09:13:37 +03:00
// bundle in modules that need transpiling + non-js (e.g. css)
2020-07-25 19:06:22 +03:00
allowlist: [
'swagger2openapi',
'marked',
/reftools/,
'oas-resolver',
'oas-kit-common',
'oas-schema-walker',
/\.(?!(?:jsx?|json)$).{1,5}$/i,
],
2017-11-20 01:59:28 +03:00
});
2017-10-12 00:01:37 +03:00
const VERSION = JSON.stringify(require('./package.json').version);
2018-11-06 16:24:12 +03:00
let REVISION;
try {
REVISION = JSON.stringify(
2020-07-25 19:06:22 +03:00
require('child_process').execSync('git rev-parse --short HEAD').toString().trim(),
2018-11-06 16:24:12 +03:00
);
} catch (e) {
console.error('Skipping REDOC_REVISION');
}
const BANNER = `ReDoc - OpenAPI/Swagger-generated API Reference Documentation
2018-03-21 21:08:46 +03:00
-------------------------------------------------------------
Version: ${VERSION}
2019-06-04 15:47:22 +03:00
Repo: https://github.com/Redocly/redoc`;
2018-03-21 21:08:46 +03:00
export default (env: { standalone?: boolean; browser?: boolean } = {}) => ({
2018-03-17 18:58:28 +03:00
entry: env.standalone ? ['./src/polyfills.ts', './src/standalone.tsx'] : './src/index.ts',
output: {
filename: env.standalone
? 'redoc.standalone.js'
: env.browser
? 'redoc.browser.lib.js'
: 'redoc.lib.js',
2018-03-17 18:58:28 +03:00
path: path.join(__dirname, '/bundles'),
library: 'Redoc',
libraryTarget: 'umd',
globalObject: 'this',
2018-03-17 18:58:28 +03:00
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.tsx', '.js', '.mjs', '.json'],
fallback: {
path: require.resolve('path-browserify'),
buffer: require.resolve('buffer'),
http: false,
fs: path.resolve(__dirname, 'src/empty.js'),
os: path.resolve(__dirname, 'src/empty.js'),
tty: path.resolve(__dirname, 'src/empty.js'),
2023-07-19 16:34:35 +03:00
url: require.resolve('url/'),
},
2018-03-17 18:58:28 +03:00
},
performance: false,
externalsPresets: env.standalone || env.browser ? {} : { node: true },
2018-03-17 18:58:28 +03:00
externals: env.standalone
? {
esprima: 'null',
'node-fetch': 'null',
2019-05-10 18:03:28 +03:00
'node-fetch-h2': 'null',
yaml: 'null',
url: 'null',
2019-05-10 18:03:28 +03:00
'safe-json-stringify': 'null',
}
2018-03-17 18:58:28 +03:00
: (context, request, callback) => {
// ignore node-fetch dep of swagger2openapi as it is not used
if (/esprima|node-fetch|node-fetch-h2|\/yaml|safe-json-stringify|url$/i.test(request)) {
2018-05-17 11:40:47 +03:00
return callback(null, 'var undefined');
}
return nodeExternals(context, request, callback);
},
2017-10-12 00:01:37 +03:00
2018-03-17 18:58:28 +03:00
module: {
rules: [
{
test: /\.(tsx?|[cm]?js)$/,
loader: 'esbuild-loader',
options: {
target: 'es2015',
tsconfigRaw: require('./tsconfig.json'),
2017-10-12 00:01:37 +03:00
},
exclude: [/node_modules/],
2018-03-17 18:58:28 +03:00
},
{
test: /\.css$/,
use: [
2022-01-27 14:46:05 +03:00
'style-loader',
'css-loader',
{
loader: 'esbuild-loader',
options: {
minify: true,
},
},
],
2018-03-17 18:58:28 +03:00
},
2017-10-12 00:01:37 +03:00
],
2018-03-17 18:58:28 +03:00
},
plugins: [
new webpack.DefinePlugin({
__REDOC_VERSION__: VERSION,
__REDOC_REVISION__: REVISION,
'process.env': '{}',
'process.platform': '"browser"',
'process.stdout': 'null',
2018-03-17 18:58:28 +03:00
}),
2020-07-25 19:06:22 +03:00
new ForkTsCheckerWebpackPlugin({ logger: { infrastructure: 'silent', issues: 'console' } }),
new webpack.BannerPlugin(BANNER),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
}),
webpackIgnore(/js-yaml\/dumper\.js$/),
env.standalone ? webpackIgnore(/^\.\/SearchWorker\.worker$/) : undefined,
].filter(Boolean),
2018-03-17 18:58:28 +03:00
});