shakapacker 6.2.1 → 6.3.0.pre.rc.1
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 +29 -3
- data/CONTRIBUTING.md +2 -2
- data/Gemfile.lock +1 -1
- data/README.md +27 -12
- data/docs/v6_upgrade.md +1 -1
- data/lib/install/config/webpacker.yml +2 -0
- data/lib/tasks/webpacker/clean.rake +1 -3
- data/lib/tasks/webpacker/clobber.rake +1 -3
- data/lib/tasks/webpacker/compile.rake +1 -4
- data/lib/webpacker/compiler.rb +12 -30
- data/lib/webpacker/configuration.rb +6 -0
- data/lib/webpacker/helper.rb +26 -1
- data/lib/webpacker/manifest.rb +2 -2
- data/lib/webpacker/version.rb +1 -1
- data/package/babel/preset.js +0 -1
- data/package.json +12 -11
- data/test/compiler_test.rb +27 -32
- data/test/configuration_test.rb +24 -4
- data/test/helper_test.rb +22 -0
- data/test/manifest_test.rb +3 -3
- data/test/test_app/config/webpacker_no_precompile.yml +7 -0
- data/yarn.lock +917 -884
- metadata +7 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shakapacker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.
|
4
|
+
version: 6.3.0.pre.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-04-
|
13
|
+
date: 2022-04-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
@@ -275,6 +275,7 @@ files:
|
|
275
275
|
- test/test_app/config/webpack/webpack.config.js
|
276
276
|
- test/test_app/config/webpacker.yml
|
277
277
|
- test/test_app/config/webpacker_manifest_path.yml
|
278
|
+
- test/test_app/config/webpacker_no_precompile.yml
|
278
279
|
- test/test_app/config/webpacker_other_location.yml
|
279
280
|
- test/test_app/config/webpacker_public_root.yml
|
280
281
|
- test/test_app/package.json
|
@@ -291,7 +292,7 @@ homepage: https://github.com/shakacode/shakapacker
|
|
291
292
|
licenses:
|
292
293
|
- MIT
|
293
294
|
metadata:
|
294
|
-
source_code_uri: https://github.com/shakacode/shakapacker/tree/v6.
|
295
|
+
source_code_uri: https://github.com/shakacode/shakapacker/tree/v6.3.0-rc.1
|
295
296
|
post_install_message:
|
296
297
|
rdoc_options: []
|
297
298
|
require_paths:
|
@@ -303,9 +304,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
303
304
|
version: 2.6.0
|
304
305
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
305
306
|
requirements:
|
306
|
-
- - "
|
307
|
+
- - ">"
|
307
308
|
- !ruby/object:Gem::Version
|
308
|
-
version:
|
309
|
+
version: 1.3.1
|
309
310
|
requirements: []
|
310
311
|
rubygems_version: 3.2.32
|
311
312
|
signing_key:
|
@@ -352,6 +353,7 @@ test_files:
|
|
352
353
|
- test/test_app/config/webpack/webpack.config.js
|
353
354
|
- test/test_app/config/webpacker.yml
|
354
355
|
- test/test_app/config/webpacker_manifest_path.yml
|
356
|
+
- test/test_app/config/webpacker_no_precompile.yml
|
355
357
|
- test/test_app/config/webpacker_other_location.yml
|
356
358
|
- test/test_app/config/webpacker_public_root.yml
|
357
359
|
- test/test_app/package.json
|