1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-12 08:04:14 +02:00

Merge branch 'CKGrafico-feature/sass' into sass

# Conflicts:
#	package.json
#	static/js/webslides.js
#	static/js/webslides.min.js
This commit is contained in:
Antonio Laguna
2017-05-01 12:52:38 +02:00
13 changed files with 129 additions and 7888 deletions

50
webpack.config.js Normal file
View File

@@ -0,0 +1,50 @@
const SmartBannerPlugin = require('smart-banner-webpack-plugin');
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const src = path.join(__dirname, 'src');
const pkg = require('./package.json');
module.exports = {
context: src,
entry: {
webslides: './js/full.js'
},
output: {
filename: '[name].js',
path: path.join(__dirname, 'static/js'),
publicPath: '/static/js/'
},
devServer: {
contentBase: __dirname,
host: '0.0.0.0'
},
module: {
rules: [
{
test: /\.js$/,
use: [
'babel-loader',
'eslint-loader',
],
include: src
},
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader?url=false!postcss-loader!sass-loader?sourceMap'
}),
include: src
}
]
},
plugins: [
new ExtractTextPlugin('../css/webslides.css'),
new SmartBannerPlugin({
banner: `Name: WebSlides\nVersion: ${pkg.version}\nDate: ${new Date().toISOString().slice(0,10)}\nDescription: ${pkg.description}\nURL: ${pkg.homepage}\nCredits: @jlantunez, @LuisSacristan, @Belelros`,
raw: false,
entryOnly: true
})
],
};