web-dev-qa-db-ja.com

Webpackを使用してCSSおよびJSファイルをインポートする

私はこのようなディレクトリ構造を持っています:

enter image description here

およびnode_modules内:

 >node_modules
  >./bin
   >webpack.config.js
  >bootstrap
   >bootstrap.css
   >bootstrap.js

次のようなCSSバンドルとJSバンドルを個別に生成する必要があります。

custom-styles.css、custom-js.js、style-libs.css、js-libs.js

ここで、style-libsおよびjs-libsには、bootstrapおよびjQueryのようなすべてのライブラリのファイルとjsファイルが含まれている必要があります。これまでに行ったことは次のとおりです。

webpack.config.js:

const path = require('path');
const basedir = path.join(__dirname, '../../client');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const stylesPath = path.join(__dirname, '../bootstrap/dist/css');

var ExtractTextPlugin = require("extract-text-webpack-plugin");

module.exports = {
  watch: true,

  // Script to bundle using webpack
  entry: path.join(basedir, 'src', 'Client.js'),
  // Output directory and bundled file
  output: {
    path: path.join(basedir, 'dist'),
    filename: 'app.js'
  },
  // Configure module loaders (for JS ES6, JSX, etc.)
  module: {
    // Babel loader for JS(X) files, presets configured in .babelrc
    loaders: [
        {
            test: /\.jsx?$/,
            loader: 'babel',
            babelrc: false,
            query: {
                presets: ["es2015", "stage-0", "react"],
                cacheDirectory: true // TODO: only on development
            }
        },
        {
            test: /\.css$/,
            loader: ExtractTextPlugin.extract("style-loader", "css-loader")
        },
    ]
  },
  // Set plugins (for index.html, optimizations, etc.)
  plugins: [
     // Generate index.html
     new HtmlWebpackPlugin({
        template: path.join(basedir, 'src', 'index.html'),
        filename: 'index.html'
     }),
     new ExtractTextPlugin(stylesPath + "/bootstrap.css", {
        allChunks: true,
     })
  ]
};

Client.js

import * as p from 'babel-polyfill';
import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/App.jsx';

ReactDOM.render(<App />, document.getElementById('app'));

アプリを実行し、webpackを使用して外部JSおよびCSSファイルをロードすることを除いて、すべてのコンポーネントを正しくレンダリングできます。

私はwebpackについてあまり経験がなく、それを聞くのが難しいと感じています。簡単な質問がいくつかあります。

1-この構成は正しいですか?はいの場合、ES6を使用してコンポーネントにCSSファイルとJSファイルを含めるにはどうすればよいですか。 importキーワードのようなもの。

2-CSSファイルにwebpackを使用する必要がありますか?

3-入力用の個々のディレクトリとwebpackのそれぞれの出力ファイルを指定する方法は?何かのようなもの all-custom.jscustom1.jsおよびcustom2.js

これらは非常に基本的な質問であり、Googleを試してみましたが、初心者向けのシンプルなWebpackのチュートリアルは見つかりませんでした。

12
Syed Ali Taqi

複数のプロジェクトでWebpackを試した後、Webpackがどのようにデータを読み込むかを考えました。質問にはまだ答えが出ていないので、同じニーズを持つ人のために自分でそれをすることにしました。

ディレクトリ構造

->assets
  ->css
    ->my-style-1.css //custom styling file 1
    ->my-style-2.css //custom styling file 2

->src
  ->app
    ->app.js
    ->variables.js

  ->libs.js //require all js libraries here
  ->styles-custom.js //require all custom css files here
  ->styles-libs.js //require all style libraries here

->node_modules
->index.html
->package.json
->webpack.config.js

バンドル1(アプリのメインコード)

app.js:これがメインファイルであり、アプリがここから始まると仮定します

var msgs = require('./variables');
//similarly import other js files you need in this bundle

//your application code here...
document.getElementById('heading').innerText = msgs.foo;
document.getElementById('sub-heading').innerText = msgs.bar;

バンドル2(jsモジュール)

libs.js:このファイルには必要なすべてのモジュールが必要です

require('bootstrap');
//similarly import other js libraries you need in this bundle

バンドル3(外部cssファイル)

styles-libs.js:このファイルには、すべての外部cssファイルが必要です。

require('bootstrap/dist/css/bootstrap.css');
//similarly import other css libraries you need in this bundle

バンドル4(カスタムcssファイル)

styles-custom.js:このファイルにはすべてのカスタムcssファイルが必要です

require('../assets/css/my-style-1.css');
require('../assets/css/my-style-2.css');
//similarly import other css files you need in this bundle

webpack.config.js

const path = require('path');
const webpack = require('webpack');
const extractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {
    entry: {
        'app': './src/app/app.js', //specifying bundle with custom js files
        'libs': './src/libs.js', //specifying bundle with js libraries
        'styles-custom': './src/styles-custom.js', //specifying bundle with custom css files
        'styles-libs': './src/styles-libs.js', //specifying bundle with css libraries
    },
    module: {
        loaders: [
            //used for loading css files
            {
                test: /\.css$/,
                loader: extractTextPlugin.extract({ fallbackLoader: 'style-loader', loader: 'css-loader?sourceMap' })
            },
            //used for loading fonts and images
            {
                test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/,
                loader: 'file-loader?name=assets/[name].[hash].[ext]'
            }
        ]
    },
    output: {
        path: path.resolve(__dirname, 'dist'), //directory for output files
        filename: '[name].js' //using [name] will create a bundle with same file name as source
    },
    plugins: [
        new extractTextPlugin('[name].css'), //is used for generating css file bundles

        //use this for adding jquery
        new webpack.ProvidePlugin({
            $: 'jquery',
            jQuery: 'jQuery'
        })
    ]
}

index.html

<head>
  <link rel="stylesheet" href="dist/styles-libs.css" />
  <link rel="stylesheet" href="dist/styles-custom.css" />
</head>
<body>
  <h2 id="heading"></h2>
  <h3>
    <label id="sub-heading" class="label label-info"></label>
  </h3>
  <script src="dist/libs.js"></script>
  <script src="dist/app.js"></script>
</body>
8
Syed Ali Taqi
  1. プロジェクトのソースファイルにes6のインポートを使用してcssおよびJSファイルを含めることができます。例:

import './style.css';

'./path/style.js'からスタイルをインポートします。

NB。通常、es5でwebpack.config.jsファイルにコーディングする必要があります。 es6を使用する場合は、リンクをたどってください webpack.config.jsでES6を使用するにはどうすればよいですか?

  1. CSS設定には https://github.com/webpack/css-loader を使用できます。

  2. Webpackでコード分割を使用し、複数のエントリポイントを指定できますが、複数の出力ファイルが生成されます。次のリンクの複数のエントリポイントセクションをご覧ください。 https://webpack.github.io/docs/code-splitting.html

10