From ee8fc5be76e799f73243058b6e4b04833dc3a6cc Mon Sep 17 00:00:00 2001
From: Humberto Alfonso Díaz <humberto.alfonso@asvito.es>
Date: Thu, 20 Jun 2019 09:12:47 +0200
Subject: RESTRUT Rename app.js to index.js and remove bootstrap dependency

---
 package.json      | 3 +--
 src/app.js        | 8 --------
 src/index.js      | 7 +++++++
 webpack.config.js | 4 ++--
 4 files changed, 10 insertions(+), 12 deletions(-)
 delete mode 100644 src/app.js
 create mode 100644 src/index.js

diff --git a/package.json b/package.json
index 1c221bc..e23d95a 100644
--- a/package.json
+++ b/package.json
@@ -36,7 +36,6 @@
         "zip-webpack-plugin": "^3.0.0"
     },
     "dependencies": {
-        "@iconfu/svg-inject": "^1.2.3",
-        "bootstrap": "^4.3.1"
+        "@iconfu/svg-inject": "^1.2.3"
     }
 }
diff --git a/src/app.js b/src/app.js
deleted file mode 100644
index 7c9b244..0000000
--- a/src/app.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import '@iconfu/svg-inject';
-
-console.log('Arrancada la aplicación compilando CSS y SaSS');
-
-
-/* CSS */
-// import 'bootstrap/dist/css/bootstrap.min.css';
-import './styles/app.scss';
diff --git a/src/index.js b/src/index.js
new file mode 100644
index 0000000..406ef65
--- /dev/null
+++ b/src/index.js
@@ -0,0 +1,7 @@
+import '@iconfu/svg-inject';
+
+console.log('Arrancada la aplicación compilando CSS y SaSS');
+
+
+/* CSS */
+import './styles/app.scss';
diff --git a/webpack.config.js b/webpack.config.js
index 157b8be..b875b6c 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -9,9 +9,9 @@ const ZipPlugin = require('zip-webpack-plugin');
 
 module.exports = {
     mode: 'production',
-    entry: './src/app.js',
+    entry: './src/index.js',
     output: {
-        filename: 'app.js',
+        filename: 'index.js',
         path: __dirname + '/dist'
     },
     optimization: {
-- 
cgit