first commit
This commit is contained in:
98
vendor/yidas/yii2-bower-asset/bower/inputmask/qunit/webpack.config.js
vendored
Normal file
98
vendor/yidas/yii2-bower-asset/bower/inputmask/qunit/webpack.config.js
vendored
Normal file
@ -0,0 +1,98 @@
|
||||
'use strict';
|
||||
|
||||
let webpack = require('webpack');
|
||||
let path = require('path');
|
||||
|
||||
function _path(p) {
|
||||
return path.join(__dirname, p);
|
||||
}
|
||||
|
||||
const rules = {
|
||||
sourceMap: {
|
||||
enforce: 'pre',
|
||||
test: /\.js$/,
|
||||
loader: 'source-map-loader',
|
||||
},
|
||||
js: {
|
||||
test: /\.js$/,
|
||||
loader: 'babel-loader',
|
||||
exclude: /(node_modules)/,
|
||||
options: {
|
||||
presets: [
|
||||
'es2015',
|
||||
'stage-0',
|
||||
],
|
||||
passPerPreset: true,
|
||||
},
|
||||
},
|
||||
styles: {
|
||||
test: /\.css$/,
|
||||
use: [
|
||||
'style-loader',
|
||||
{
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
importLoaders: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
loader: 'postcss-loader',
|
||||
options: {
|
||||
plugins: function () {
|
||||
return [
|
||||
require('postcss-cssnext')
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
entry: "./qunit/index.js",
|
||||
output: {
|
||||
path: __dirname,
|
||||
filename: "./qunit.js"
|
||||
},
|
||||
externals: {
|
||||
"qunitjs": "QUnit"
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
rules.sourceMap,
|
||||
rules.js,
|
||||
rules.styles
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
// "../js/dependencyLibs/inputmask.dependencyLib": "../js/dependencyLibs/inputmask.dependencyLib.jquery",
|
||||
// "./dependencyLibs/inputmask.dependencyLib": "./dependencyLibs/inputmask.dependencyLib.jquery"
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
new webpack.SourceMapDevToolPlugin({
|
||||
// file and reference
|
||||
filename: '[file].map',
|
||||
// sources naming
|
||||
moduleFilenameTemplate: '[absolute-resource-path]',
|
||||
fallbackModuleFilenameTemplate: '[absolute-resource-path]',
|
||||
}),
|
||||
new webpack.LoaderOptionsPlugin({
|
||||
debug: true
|
||||
})
|
||||
],
|
||||
bail: true,
|
||||
// devServer: {
|
||||
// publicPath: '/',
|
||||
// stats: {
|
||||
// colors: true
|
||||
// },
|
||||
// host: '0.0.0.0',
|
||||
// inline: true,
|
||||
// port: '8080',
|
||||
// quiet: false,
|
||||
// noInfo: false,
|
||||
// },
|
||||
};
|
||||
Reference in New Issue
Block a user