瀏覽代碼

add comments

Yuki Takei 9 年之前
父節點
當前提交
c6b79fe81c
共有 2 個文件被更改,包括 9 次插入0 次删除
  1. 5 0
      config/webpack.common.js
  2. 4 0
      config/webpack.dev.js

+ 5 - 0
config/webpack.common.js

@@ -1,3 +1,7 @@
+/**
+ * @author: Yuki Takei <yuki@weseek.co.jp>
+ */
+
 const webpack = require('webpack');
 const helpers = require('./helpers');
 
@@ -54,6 +58,7 @@ module.exports = function (options) {
       ]
     },
     plugins: [
+
       new AssetsPlugin({
         path: helpers.root('public/js'),
         filename: 'webpack-assets.json',

+ 4 - 0
config/webpack.dev.js

@@ -1,3 +1,7 @@
+/**
+ * @author: Yuki Takei <yuki@weseek.co.jp>
+ */
+
 const webpack = require('webpack');
 const helpers = require('./helpers');
 const webpackMerge = require('webpack-merge');