shakapacker 9.0.0 → 9.1.0
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 +77 -11
- data/Gemfile.lock +1 -1
- data/README.md +161 -107
- data/docs/common-upgrades.md +615 -0
- data/docs/rspack_migration_guide.md +92 -17
- data/docs/transpiler-migration.md +21 -0
- data/docs/typescript-migration.md +2 -1
- data/docs/using_swc_loader.md +108 -8
- data/docs/v9_upgrade.md +45 -0
- data/lib/shakapacker/bundler_switcher.rb +322 -0
- data/lib/shakapacker/doctor.rb +49 -4
- data/lib/shakapacker/swc_migrator.rb +14 -6
- data/lib/shakapacker/version.rb +1 -1
- data/lib/tasks/shakapacker/switch_bundler.rake +82 -0
- data/lib/tasks/shakapacker.rake +2 -1
- data/package/environments/__type-tests__/rspack-plugin-compatibility.ts +30 -0
- data/package/environments/types.ts +22 -14
- data/package/index.ts +12 -9
- data/package/swc/index.ts +5 -3
- data/package/types/README.md +2 -1
- data/package/types/index.ts +1 -0
- data/package/utils/debug.ts +5 -5
- data/package-lock.json +13047 -0
- data/package.json +6 -1
- data/yarn.lock +196 -115
- metadata +7 -2
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: 9.
|
4
|
+
version: 9.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
@@ -172,6 +172,7 @@ files:
|
|
172
172
|
- config/README.md
|
173
173
|
- config/shakapacker.yml
|
174
174
|
- docs/cdn_setup.md
|
175
|
+
- docs/common-upgrades.md
|
175
176
|
- docs/css-modules-export-mode.md
|
176
177
|
- docs/customizing_babel_config.md
|
177
178
|
- docs/deployment.md
|
@@ -216,6 +217,7 @@ files:
|
|
216
217
|
- lib/install/template.rb
|
217
218
|
- lib/shakapacker.rb
|
218
219
|
- lib/shakapacker/base_strategy.rb
|
220
|
+
- lib/shakapacker/bundler_switcher.rb
|
219
221
|
- lib/shakapacker/commands.rb
|
220
222
|
- lib/shakapacker/compiler.rb
|
221
223
|
- lib/shakapacker/compiler_strategy.rb
|
@@ -253,14 +255,17 @@ files:
|
|
253
255
|
- lib/tasks/shakapacker/info.rake
|
254
256
|
- lib/tasks/shakapacker/install.rake
|
255
257
|
- lib/tasks/shakapacker/migrate_to_swc.rake
|
258
|
+
- lib/tasks/shakapacker/switch_bundler.rake
|
256
259
|
- lib/tasks/shakapacker/verify_config.rake
|
257
260
|
- lib/tasks/shakapacker/verify_install.rake
|
261
|
+
- package-lock.json
|
258
262
|
- package.json
|
259
263
|
- package/.npmignore
|
260
264
|
- package/babel/preset.ts
|
261
265
|
- package/config.ts
|
262
266
|
- package/dev_server.ts
|
263
267
|
- package/env.ts
|
268
|
+
- package/environments/__type-tests__/rspack-plugin-compatibility.ts
|
264
269
|
- package/environments/base.ts
|
265
270
|
- package/environments/development.ts
|
266
271
|
- package/environments/production.ts
|
@@ -350,7 +355,7 @@ homepage: https://github.com/shakacode/shakapacker
|
|
350
355
|
licenses:
|
351
356
|
- MIT
|
352
357
|
metadata:
|
353
|
-
source_code_uri: https://github.com/shakacode/shakapacker/tree/v9.
|
358
|
+
source_code_uri: https://github.com/shakacode/shakapacker/tree/v9.1.0
|
354
359
|
rdoc_options: []
|
355
360
|
require_paths:
|
356
361
|
- lib
|