web-dev-qa-db-ja.com

翡翠とホットパックでwebpackを使用してHTMLをコーディングする方法

私はwebpackを初めて使用し、jadeテンプレート、PostCSShot reloadを使用してHTML/CSSをコーディングし、webpack-dev-serverコーディング体験をスピードアップします。

そのため、複数のエントリポイント、インクルード、CSS、img、フォント、その他のアセットを含むjadeファイルをいくつか用意します。

webpack構成の提案はありますか?ありがとう。

私はhtml-webpack-pluginを、次のような設定で試しました

new HtmlWebpackPlugin({
    filename:'page1.html',
    templateContent: function(templateParams, compilation) {
        var templateFile = path.join(__dirname, './src/page1.jade');
        compilation.fileDependencies.Push(templateFile);
        return jade.compileFile(templateFile)();
    },
    inject: true,
})

動作していますが、jadeインクルードのホットリロード、css/img/fontアセットはありません。

その後、indexhtml-webpack-pluginを見つけましたが、HTMLファイルでのみ機能するようです。テンプレートはサポートされていません。

Edit1:

今のところ、これで終わりましたwebpack.config.js

var path = require('path'),
    webpack = require('webpack'),
    HtmlWebpackPlugin = require('html-webpack-plugin'),
    node_modules_dir = path.resolve(__dirname, 'node_modules');

module.exports = {
    entry: {
        index: ['webpack/hot/dev-server', './index.js'],
        page2: ['webpack/hot/dev-server', './page2.js'],
        //vendors: ['react', 'jquery'],
    },
    output: {
        filename: '[name].js',
        path: path.resolve(__dirname, 'build'),
        publicPath: path.resolve(__dirname, '/'),
        libraryTarget: "umd"
    },
    plugins: [
        new webpack.NoErrorsPlugin(),
        //new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js'),
        new webpack.dependencies.LabeledModulesPlugin(),
    ],
    module: {
        noParse: [
            new RegExp('^react$'),
            new RegExp('^jquery$'),
        ],
        loaders: [
            { test: /\.js$/,    loader: "babel-loader", query: {optional: ["es7.classProperties"]}},
            { test: /\.html$/,  loader: "html" },
            { test: /\.jade$/,  loader: "jade" },
            { test: /\.css$/,   loader: "style-loader!css-loader!postcss-loader" },
            { test: /\.woff$/,  loader: 'url-loader?prefix=font/&limit=5000&minetype=application/font-woff'},
            { test: /\.ttf$/,   loader: 'url-loader?prefix=font/'},
            { test: /\.eot$/,   loader: 'url-loader?prefix=font/'},
            { test: /\.svg$/,   loader: 'url-loader?prefix=font/'},
            { test: /\.png$/,   loader: "url-loader?prefix=img/&mimetype=image/png"},
            { test: /\.jpg$/,   loader: "url-loader?prefix=img/&mimetype=image/jpg"},
            { test: /\.gif$/,   loader: "url-loader?prefix=img/&mimetype=image/gif"}
        ],
    },
    postcss: function() {
        return {
          defaults: [
            require('autoprefixer')
          ]
        }
    }
}

Object.keys(module.exports.entry).forEach(function(page){

    if(page!=='vendors'){
        module.exports.plugins.Push( new HtmlWebpackPlugin({
            filename: page+'.html',
            chunks: [page]
        }) );
    }
})

index.jsエントリポイントは次のようになります。

import index from './templates/index.jade';
require('./css/index.css');
if (typeof document !== 'undefined') {
  document.body.innerHTML = index();
}

これは、現時点でのHTML/CSS開発のための私用の作業セットアップです。

14
arturkin

html-webpack-plugin はテンプレートパラメータを取得できるように見えます。これは、明示的なローダー(ドキュメントに記載されています)を取得するか、構成されたローダーを使用できます。

// webpack.config.js

var HtmlWebpackPlugin = require('html-webpack-plugin')

module.exports = {
  module: {
    loaders: [
      {
        test: /\.jade$/,
        loader: 'jade'
      }
    ]
  },
  plugins: [
    new HtmlWebpackPlugin({
      template: './src/index.jade'
    })
  ]
}
17
macro

Jade-html-loaderがあります。設定してみます。

ありがとう https://stackoverflow.com/a/32312078

私もwebpackを使い始めたばかりで、jade htmlローダーは、htmlローダーとまったく同じことを行う、jade専用のローダーであると考えています。

編集:Meh、html-webpack-plugin

0
Mike Padg