webpacker 4.0.5 → 4.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4c1f44c9c15e9c73d4ebd6d8fbec5bda80690ff1306beb257623f5c42e4a79c
4
- data.tar.gz: 6c7f4806a0dc1276ba4a6e06d13e080f17939f59fea3c9a703b150c0563a8edb
3
+ metadata.gz: 1c9399fb41715ddff0ffb9a7d62857c01e05cedf5ae3ff5d87be3b34d8bb6ea5
4
+ data.tar.gz: 1098954d61c4b47abf1118cc0cde31bd4f17916952778a32ff82f66657ca9faa
5
5
  SHA512:
6
- metadata.gz: 74fd6b7c5655a8c088b4a85dfe0acafc6c97fb9af6a522a95cb9ab4bb12cc9784adb8a468d280ef59fffd6bb1ee608d25371eb14114e8f7737e7fe851c4ebac3
7
- data.tar.gz: d33efe7358aa9cf213f0b25ac5ebd18b6d0ecc6c5102d676fb35a0e3a611ca1dd39187b95b0cc9e0d4936947aaf82d7d303c86dd09f9b913670e97a8021a4d69
6
+ metadata.gz: 063e568bc9e4c8be7ac2f3b1e3482e7f3165039f0f414d17139299903b6c91301ab53160de432a225c0b15f1ae24e69b7fbcd03973bd402ba67d72472b2c2964
7
+ data.tar.gz: 4017669977daef090a3d821b79f79a50df5f7e0fcd62354634eb310c088bcb6ef23835d8599334fd528afff6d4a08121b9edf4064386c2299aa35cdae7f260ce
@@ -1,5 +1,9 @@
1
1
  **Please note that Webpacker 3.1.0 and 3.1.1 have some serious bugs so please consider using either 3.0.2 or 3.2.0**
2
2
 
3
+ ## [[4.0.6]](https://github.com/rails/webpacker/compare/v4.0.5...v4.0.6) - 2019-05-30
4
+
5
+ - Webpack should not be transpiled [#2111](https://github.com/rails/webpacker/pull/2111)
6
+
3
7
  ## [[4.0.5]](https://github.com/rails/webpacker/compare/v4.0.4...v4.0.5) - 2019-05-30
4
8
 
5
9
  - Don't let babel & core-js transpile each other [#2110](https://github.com/rails/webpacker/pull/2110)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- webpacker (4.0.5)
4
+ webpacker (4.0.6)
5
5
  activesupport (>= 4.2)
6
6
  rack-proxy (>= 0.6.1)
7
7
  railties (>= 4.2)
@@ -1,4 +1,4 @@
1
1
  module Webpacker
2
2
  # Change the version in package.json too, please!
3
- VERSION = "4.0.5".freeze
3
+ VERSION = "4.0.6".freeze
4
4
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rails/webpacker",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "Use webpack to manage app-like JavaScript modules in Rails",
5
5
  "main": "package/index.js",
6
6
  "files": [
@@ -3,11 +3,11 @@ const { cache_path: cachePath } = require('../config')
3
3
  const { nodeEnv } = require('../env')
4
4
 
5
5
  // Compile standard ES features for JS in node_modules with Babel.
6
- // Regex details for exclude: https://regex101.com/r/CglKdg/3/
6
+ // Regex details for exclude: https://regex101.com/r/CglKdg/5/
7
7
  module.exports = {
8
8
  test: /\.(js|mjs)$/,
9
9
  include: /node_modules/,
10
- exclude: /(?:@?babel(?:\/|\\{1,2}|-).+)|regenerator-runtime|core-js/,
10
+ exclude: /(?:@?babel(?:\/|\\{1,2}|-).+)|regenerator-runtime|core-js|webpack/,
11
11
  use: [
12
12
  {
13
13
  loader: 'babel-loader',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webpacker
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.5
4
+ version: 4.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-05-30 00:00:00.000000000 Z
12
+ date: 2019-05-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -267,8 +267,8 @@ homepage: https://github.com/rails/webpacker
267
267
  licenses:
268
268
  - MIT
269
269
  metadata:
270
- source_code_uri: https://github.com/rails/webpacker/tree/v4.0.5
271
- changelog_uri: https://github.com/rails/webpacker/blob/v4.0.5/CHANGELOG.md
270
+ source_code_uri: https://github.com/rails/webpacker/tree/v4.0.6
271
+ changelog_uri: https://github.com/rails/webpacker/blob/v4.0.6/CHANGELOG.md
272
272
  post_install_message:
273
273
  rdoc_options: []
274
274
  require_paths: