Bläddra i källkod

💄Prettiers

main
Eric Amodio 2 år sedan
förälder
incheckning
4491a1902f
2 ändrade filer med 50 tillägg och 47 borttagningar
  1. +2
    -2
      src/webviews/apps/plus/graph/graph.tsx
  2. +48
    -45
      webpack.config.js

+ 2
- 2
src/webviews/apps/plus/graph/graph.tsx Visa fil

@ -14,7 +14,7 @@ import type {
GraphRepository,
InternalNotificationType,
State,
UpdateStateCallback
UpdateStateCallback,
} from '../../../../plus/webviews/graph/protocol';
import {
DidChangeAvatarsNotificationType,
@ -95,7 +95,7 @@ export class GraphApp extends App {
path => this.onRepositorySelectionChanged(path),
250,
)}
onDoubleClickRef={(ref) => this.onDoubleClickRef(ref)}
onDoubleClickRef={ref => this.onDoubleClickRef(ref)}
onMissingAvatars={(...params) => this.onGetMissingAvatars(...params)}
onMissingRefsMetadata={(...params) => this.onGetMissingRefsMetadata(...params)}
onMoreRows={(...params) => this.onGetMoreRows(...params)}

+ 48
- 45
webpack.config.js Visa fil

@ -354,52 +354,55 @@ function getWebviewsConfig(mode, env) {
publicPath: '#{root}/dist/webviews/',
},
optimization: {
minimizer: mode === 'production' ? [
new TerserPlugin(
env.esbuild
? {
minify: TerserPlugin.esbuildMinify,
terserOptions: {
// @ts-ignore
drop: ['debugger', 'console'],
// @ts-ignore
format: 'esm',
minify: true,
treeShaking: true,
// // Keep the class names otherwise @log won't provide a useful name
// keepNames: true,
target: 'es2020',
},
}
: {
extractComments: false,
parallel: true,
// @ts-ignore
terserOptions: {
compress: {
drop_debugger: true,
drop_console: true,
},
ecma: 2020,
// // Keep the class names otherwise @log won't provide a useful name
// keep_classnames: true,
module: true,
minimizer:
mode === 'production'
? [
new TerserPlugin(
env.esbuild
? {
minify: TerserPlugin.esbuildMinify,
terserOptions: {
// @ts-ignore
drop: ['debugger', 'console'],
// @ts-ignore
format: 'esm',
minify: true,
treeShaking: true,
// // Keep the class names otherwise @log won't provide a useful name
// keepNames: true,
target: 'es2020',
},
}
: {
extractComments: false,
parallel: true,
// @ts-ignore
terserOptions: {
compress: {
drop_debugger: true,
drop_console: true,
},
ecma: 2020,
// // Keep the class names otherwise @log won't provide a useful name
// keep_classnames: true,
module: true,
},
},
),
new ImageMinimizerPlugin({
deleteOriginalAssets: true,
generator: [imageGeneratorConfig],
}),
new CssMinimizerPlugin({
minimizerOptions: {
preset: [
'cssnano-preset-advanced',
{ discardUnused: false, mergeIdents: false, reduceIdents: false },
],
},
},
),
new ImageMinimizerPlugin({
deleteOriginalAssets: true,
generator: [imageGeneratorConfig],
}),
new CssMinimizerPlugin({
minimizerOptions: {
preset: [
'cssnano-preset-advanced',
{ discardUnused: false, mergeIdents: false, reduceIdents: false },
],
},
}),
] : [],
}),
]
: [],
},
module: {
rules: [

Laddar…
Avbryt
Spara