From e17ef16980b7320f501db6eb5f70daada984d1fb Mon Sep 17 00:00:00 2001 From: Marco Pesani Date: Tue, 19 Dec 2017 09:36:43 +0100 Subject: [PATCH] named package creation --- webpack.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index f004bd7..772e0a7 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,9 +1,9 @@ -const path = require('path'); -const webpack = require('webpack'); +const path = require('path') +const webpack = require('webpack') module.exports = { entry: { - 'codice.fiscale': './src/codice.fiscale.js' + 'codice.fiscale': './src/index.js' }, output: { path: path.resolve(__dirname, 'dist'), @@ -31,4 +31,4 @@ module.exports = { .optimize .UglifyJsPlugin() ] -}; +}