From: Humberto Alfonso Díaz Date: Thu, 20 Jun 2019 07:12:47 +0000 (+0200) Subject: RESTRUT Rename app.js to index.js and remove bootstrap dependency X-Git-Tag: 8.99.5~30 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=9ff2c029fb0a1c8d2dede98d50d03f2341d20710;p=apps%2Fhtml5-mixer.git RESTRUT Rename app.js to index.js and remove bootstrap dependency --- 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/index.js similarity index 72% rename from src/app.js rename to src/index.js index 7c9b244..406ef65 100644 --- a/src/app.js +++ b/src/index.js @@ -4,5 +4,4 @@ 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/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: {