From 1870a96479b77d822d5f6d5c1fa17203a5db6332 Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Sat, 20 Jul 2024 23:33:36 -0400 Subject: [PATCH] chore: remove unused `src/webpack.config.js` - it is not used by anything - it references `../app/webpack.config`, which also does not exist - afaict, that file is from when the Argo Workflows UI was in this repo (i.e several years old) Signed-off-by: Anton Gilgur --- src/webpack.config.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/webpack.config.js diff --git a/src/webpack.config.js b/src/webpack.config.js deleted file mode 100644 index 75f8a7ce..00000000 --- a/src/webpack.config.js +++ /dev/null @@ -1,22 +0,0 @@ -'use strict;'; - -const config = require('../app/webpack.config'); -const webpack = require('webpack'); - -module.exports = Object.assign({}, config, { - entry: './src/index.ts', - output: { - filename: 'bundle.js', - path: __dirname + '/../../bundle', - library: 'argo-ui', - libraryTarget: 'umd', - umdNamedDefine: true, - }, - plugins: [ - new webpack.DefinePlugin({ - SYSTEM_INFO: JSON.stringify({ - version: process.env.ARGO_VERSION || 'latest', - }), - }), - ], -});