100milliongold / testWebpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TEST Webpack

웹팩 테스트를 위한 샘플 입니다.

웹팩 설정하기


기본폴더 생성

mkdir fxTest

npm init 설정

npm init -y

webpack 설치

npm install webpack-cli babel-loader style-loader css-loader mini-css-extract-plugin html-webpack-plugin webpack-dev-server --save-dev

기본 폴더 / 파일 만들기

  mkdir src
  mkdir dist
  mkdir public

  touch webpack.config.js
  touch public/index.html
  touch src/index.js

webpack.config.js 설정

const path = require("path");
const htmlWebpackPlugin = require("html-webpack-plugin");
const miniCssExtractPlugin = require("mini-css-extract-plugin");

module.exports = {
  module: {
    rules: [
      {
        test: /\.html$/,
        use: {
          loader: "html-loader",
          options: { minimize: true },
        },
      },
      {
        test: /\.js$/,
        include: [path.resolve(__dirname, "src")],
        exclude: /node_modules/,
        use: ["babel-loader", "eslint-loader"],
      },
      {
        test: /\.css$/i,
        use: [miniCssExtractPlugin.loader, "css-loader"],
      },
    ],
  },
  plugins: [
    new htmlWebpackPlugin({
      template: "./public/index.html",
      filename: "index.html",
    }),
    new miniCssExtractPlugin({
      filename: "[name].css",
      chunkFilename: "[id].css",
    }),
  ],
};

package.json 설정

{
  "name": "fx-test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "webpack --mode production",
    "start": "webpack-dev-server --open --progress --inline --mode development"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/100milliongold/testWebpack.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.9.0",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/preset-env": "^7.9.5",
    "babel-eslint": "^10.1.0",
    "babel-loader": "^8.1.0",
    "css-loader": "^3.5.2",
    "eslint": "^6.8.0",
    "eslint-loader": "^4.0.0",
    "html-loader": "^1.1.0",
    "html-webpack-plugin": "^4.2.0",
    "mini-css-extract-plugin": "^0.9.0",
    "style-loader": "^1.1.4",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.11",
    "webpack-dev-server": "^3.10.3",
    "webpack-node-externals": "^1.7.2"
  },
  "dependencies": {
    "fxjs": "^0.15.0",
    "fxjs2": "^0.15.0"
  }
}

동작 테스트

  1. dev server

    npm run start
  2. build

    npm run dev

.babelrc 파일 설정

{
  "presets": ["@babel/preset-env"],
  "plugins": ["@babel/plugin-proposal-class-properties"]
}

.eslintrc 파일 설정

{
  "parser": "babel-eslint",
  "rules": {}
}

src/index.js파일 정의

import App from "./App";

const app = new App(document.querySelector("#root"));

public/index.html 정의

<!DOCTYPE html>
<html>
  <head>
    <title>Getting Started</title>
  </head>

  <body>
    <div id="root"></div>
  </body>
</html>

code.js 적용

  1. npm install

    npm install --save-dev @babel/plugin-transform-runtime
    npm install --save @babel/runtime @babel/runtime-corejs3
  2. .babelrc 설정

    {
      "presets": [
        [
          "@babel/preset-env",
          {
            "targets": {
              "browsers": ["last 2 versions", "ie >= 11"]
            },
            "useBuiltIns": "usage",
            "corejs": { "version": 3, "proposals": true }
          }
        ]
      ],
      "plugins": ["@babel/plugin-proposal-class-properties"]
    }

About


Languages

Language:JavaScript 83.5%Language:CSS 15.3%Language:HTML 1.2%