webpacker 4.0.5 → 4.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/webpacker/version.rb +1 -1
- data/package.json +1 -1
- data/package/rules/node_modules.js +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c9399fb41715ddff0ffb9a7d62857c01e05cedf5ae3ff5d87be3b34d8bb6ea5
|
|
4
|
+
data.tar.gz: 1098954d61c4b47abf1118cc0cde31bd4f17916952778a32ff82f66657ca9faa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 063e568bc9e4c8be7ac2f3b1e3482e7f3165039f0f414d17139299903b6c91301ab53160de432a225c0b15f1ae24e69b7fbcd03973bd402ba67d72472b2c2964
|
|
7
|
+
data.tar.gz: 4017669977daef090a3d821b79f79a50df5f7e0fcd62354634eb310c088bcb6ef23835d8599334fd528afff6d4a08121b9edf4064386c2299aa35cdae7f260ce
|
data/CHANGELOG.md
CHANGED
|
@@ -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)
|
data/Gemfile.lock
CHANGED
data/lib/webpacker/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -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/
|
|
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.
|
|
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-
|
|
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.
|
|
271
|
-
changelog_uri: https://github.com/rails/webpacker/blob/v4.0.
|
|
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:
|