mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-22 16:46:34 +03:00
chore: add BannerPlugin
This commit is contained in:
parent
a0845325d9
commit
18d051a82d
|
@ -16,6 +16,13 @@ const REVISION = JSON.stringify(
|
||||||
.trim(),
|
.trim(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const BANNER =
|
||||||
|
`ReDoc - OpenAPI/Swagger-generated API Reference Documentation
|
||||||
|
-------------------------------------------------------------
|
||||||
|
Version: ${VERSION}
|
||||||
|
Repo: https://github.com/Rebilly/ReDoc`;
|
||||||
|
|
||||||
|
|
||||||
export default (env: { standalone?: boolean } = {}) => ({
|
export default (env: { standalone?: boolean } = {}) => ({
|
||||||
entry: env.standalone ? ['./src/polyfills.ts', './src/standalone.tsx'] : './src/index.ts',
|
entry: env.standalone ? ['./src/polyfills.ts', './src/standalone.tsx'] : './src/index.ts',
|
||||||
output: {
|
output: {
|
||||||
|
@ -44,14 +51,14 @@ export default (env: { standalone?: boolean } = {}) => ({
|
||||||
|
|
||||||
externals: env.standalone
|
externals: env.standalone
|
||||||
? {
|
? {
|
||||||
esprima: 'esprima',
|
esprima: 'esprima',
|
||||||
'node-fetch': 'null',
|
'node-fetch': 'null',
|
||||||
}
|
}
|
||||||
: (context, request, callback) => {
|
: (context, request, callback) => {
|
||||||
// ignore node-fetch dep of swagger2openapi as it is not used
|
// ignore node-fetch dep of swagger2openapi as it is not used
|
||||||
if (/node-fetch$/i.test(request)) return callback(null, 'var undefined');
|
if (/node-fetch$/i.test(request)) return callback(null, 'var undefined');
|
||||||
return nodeExternals(context, request, callback);
|
return nodeExternals(context, request, callback);
|
||||||
},
|
},
|
||||||
|
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
|
@ -99,5 +106,6 @@ export default (env: { standalone?: boolean } = {}) => ({
|
||||||
__REDOC_REVISION__: REVISION,
|
__REDOC_REVISION__: REVISION,
|
||||||
}),
|
}),
|
||||||
new ForkTsCheckerWebpackPlugin({ silent: true }),
|
new ForkTsCheckerWebpackPlugin({ silent: true }),
|
||||||
|
new webpack.BannerPlugin(BANNER)
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user