jetpacker 0.4.0 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aca46ec407f1dc954d3fc858ea90a4db2087d85b7ea2786164083b9ef870b0ea
4
- data.tar.gz: baf982ed4847c5c85291f44e7d1fe127374c788e982cd9047d44deed651987c5
3
+ metadata.gz: d6b696ecec6c3e01d4b911eeaef1eb287120b7e3b16904c07d1d137092b5f225
4
+ data.tar.gz: b1e9232977019b4fcab03fb756d75b820dcd968ba614228514e2f6c191543c3f
5
5
  SHA512:
6
- metadata.gz: f366e1fd65079cb369f87cae31b4e858e7a0ff9c69deba2a0b3eb821d060cb829fe59c8d3047dd8af84985fb8f19dfc73bfaf05b4edddd9095554bb86686e51a
7
- data.tar.gz: 22875916f46fab1d18acc77eb2fba5ac04471fcb97f93ddb6e61440572fbcf43f6fd1126fcac2c1b48a3ddb846c77b23cb945ed5bbd361e8043c9152a12211f3
6
+ metadata.gz: 78c56a2ada49bd6bbf8f3aa7b601cfc5fb1ee3263b40aa848b7de91701399729c70d942f8f645bdcf4c9b6538e21423d94b8805a126f4da21e06f257febb5959
7
+ data.tar.gz: 83a9297d9fd754e1433429933ae689392d6cf2b26dfa30064bc5f6404b1e1721b60b7a6647e6ab15231a1ff0a30ad644fc3446ea1c37e344973be134245178a1
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.4.1]
7
+ - add app/assets to resolved paths by default
8
+
6
9
  ## [0.4.0]
7
10
  - add jets turbine to load webpacker, but dont run yarn check on lambda
8
11
  - default extract_css: true
data/README.md CHANGED
@@ -20,6 +20,7 @@ Summarizing the changes because they're impossible to remember 🤦🏻‍♂️
20
20
  * add `Jets.version` to info command
21
21
  * Fix generators by using `Rails::Generators::AppGenerator` directly instead of `bin/stubs`
22
22
  * 2 separate versions: `Jetpacker::VERSION` and `Webpacker::VERSION`
23
+ * Default `extract_css: true`
23
24
 
24
25
  Happy Hackin' 😁
25
26
  Tung
@@ -11,7 +11,9 @@ default: &default
11
11
 
12
12
  # Additional paths webpack should lookup modules
13
13
  # ['app/assets', 'engine/foo/app/assets']
14
- resolved_paths: []
14
+ # Note: Different from original webpacker default which is resolved_paths: []
15
+ # Unsure if app/assets is better default. Seems convenient.
16
+ resolved_paths: ['app/assets']
15
17
 
16
18
  # Reload manifest.json on all requests so we reload latest compiled packs
17
19
  cache_manifest: false
@@ -1,4 +1,4 @@
1
1
  # Separate version from Webpacker version for the jetpacker gem
2
2
  module Jetpacker
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jetpacker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
@@ -289,8 +289,8 @@ homepage: https://github.com/tongueroo/jetpacker
289
289
  licenses:
290
290
  - MIT
291
291
  metadata:
292
- source_code_uri: https://github.com/tongueroo/jetpacker/tree/v0.4.0
293
- changelog_uri: https://github.com/tongueroo/jetpacker/blob/v0.4.0/CHANGELOG.md
292
+ source_code_uri: https://github.com/tongueroo/jetpacker/tree/v0.4.1
293
+ changelog_uri: https://github.com/tongueroo/jetpacker/blob/v0.4.1/CHANGELOG.md
294
294
  post_install_message:
295
295
  rdoc_options: []
296
296
  require_paths:
@@ -306,7 +306,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
306
306
  - !ruby/object:Gem::Version
307
307
  version: '0'
308
308
  requirements: []
309
- rubygems_version: 3.0.6
309
+ rubygems_version: 3.1.2
310
310
  signing_key:
311
311
  specification_version: 4
312
312
  summary: Use webpack to manage app-like JavaScript modules in Jets