webpack.config.js 2.19 KB
/**
 * webpack config
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2016/4/25
 */

'use strict';

const webpack = require('webpack');
const path = require('path');
const _ = require('lodash');
const shelljs = require('shelljs');
const ExtractTextPlugin = require('extract-text-webpack-plugin');

const entries = {};

// 构建各模块子页面JS。生成规则module.page.js
shelljs.ls(path.join(__dirname, 'js/**/*.page.js')).forEach((f) => {
    const dir = _.slice(f.split('/'), -2); // [modulename, xx.page.js]

    // Important
    // 生成规则:module.page: './js/module/xx.page.js'
    entries[`${dir[0]}.${dir[1].match(/(.*).page.js/)[1]}`] = `./js/${dir.join('/')}`;
    entries.libs = [
        'yoho-jquery',
        './js/global.js' // 全局引用js
    ];
});

module.exports = {
    entry: entries,
    output: {
        path: path.join(__dirname, 'bundle'), // absolute path
        filename: '[name].js'
    },
    module: {
        loaders: [{
            test: /\.vue$/,
            loader: 'vue'
        }, {
            test: /\.js$/,
            exclude: [/node_modules/],
            loader: 'babel'
        }, {
            test: /\.css$/,
            loader: ExtractTextPlugin.extract(['css?-url!postcss'])
        }, {
            test: /\.hbs$/,
            loader: 'handlebars-loader',
            query: {
                helperDirs: [
                    path.join(__dirname, '/js/common/helpers')
                ],
                partialDirs: [
                    path.join(__dirname, '../doraemon/views/partial')
                ]
            }
        }]
    },
    resolve: {
        modulesDirectories: ['node_modules', './vue', './hbs', './scss', './js'],
        alias: {
            js: path.join(__dirname, 'js/'),
            vue: 'vue/dist/vue.js',
            jquery: 'yoho-jquery'
        }
    },
    plugins: [
        new ExtractTextPlugin('[name].css'),
        new webpack.optimize.OccurenceOrderPlugin(),
        new webpack.optimize.CommonsChunkPlugin({
            name: 'libs',
            filename: 'libs.js'
        }),
        new webpack.ProvidePlugin({
            $: 'yoho-jquery',
            jQuery: 'yoho-jquery',
            'window.jQuery': 'yoho-jquery'
        })
    ]
};