Sha256: c01dc0b247865e3929bd9be9be4271c7f17f1d744adef5efd658529a08bc0a99

Contents?: true

Size: 420 Bytes

Versions: 19

Compression:

Stored size: 420 Bytes

Contents

const path = require("path");

module.exports = {
  entry: "./src/javascript/index.js",
  output: {
    filename: "index.pack.js",
    path: path.resolve(__dirname, "app/assets/javascripts")
  },
  module: {
    rules: [
      {
        test: /\.(js|jsx)$/,
        exclude: /node_modules/,
        use: {
          loader: "babel-loader"
        }
      }
    ]
  },
  resolve: {
    extensions: [".js", ".jsx"]
  }
};

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
attractor-2.0.4 webpack.config.js
attractor-2.0.3 webpack.config.js
attractor-2.0.2 webpack.config.js
attractor-2.0.1 webpack.config.js
attractor-2.0.0 webpack.config.js
attractor-1.2.0 webpack.config.js
attractor-1.1.1 webpack.config.js
attractor-1.1.0 webpack.config.js
attractor-1.0.2 webpack.config.js
attractor-1.0.1 webpack.config.js
attractor-1.0.0 webpack.config.js
attractor-0.6.1 webpack.config.js
attractor-0.6.0 webpack.config.js
attractor-0.5.1 webpack.config.js
attractor-0.5.0 webpack.config.js
attractor-0.4.3 webpack.config.js
attractor-0.4.2 webpack.config.js
attractor-0.4.1 webpack.config.js
attractor-0.4.0 webpack.config.js