From 4c41b7f8dfe220a319aa737137dcbb6784416e95 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Tue, 5 Nov 2019 08:13:27 -0800 Subject: [PATCH] revert name change --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index a01a97e9..433fb588 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -35,13 +35,13 @@ module.exports = [ function(env, argv) { const config = getDefaultConfiguration(); config.mode = 'development'; - config.output.filename = `ripple-lib.development.js`; + config.output.filename = `ripple-latest.js`; return config; }, function(env, argv) { const config = getDefaultConfiguration(); config.mode = 'production'; - config.output.filename = `ripple-lib.production.min.js`; + config.output.filename = `ripple-latest.min.js`; if (process.argv.includes('--analyze')) { config.plugins.push(new BundleAnalyzerPlugin()); }