jetpacker 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.jetpacker.md +3 -0
- data/README.md +1 -0
- data/lib/install/config/webpacker.yml +3 -1
- data/lib/jetpacker/version.rb +1 -1
- 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: d6b696ecec6c3e01d4b911eeaef1eb287120b7e3b16904c07d1d137092b5f225
|
4
|
+
data.tar.gz: b1e9232977019b4fcab03fb756d75b820dcd968ba614228514e2f6c191543c3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78c56a2ada49bd6bbf8f3aa7b601cfc5fb1ee3263b40aa848b7de91701399729c70d942f8f645bdcf4c9b6538e21423d94b8805a126f4da21e06f257febb5959
|
7
|
+
data.tar.gz: 83a9297d9fd754e1433429933ae689392d6cf2b26dfa30064bc5f6404b1e1721b60b7a6647e6ab15231a1ff0a30ad644fc3446ea1c37e344973be134245178a1
|
data/CHANGELOG.jetpacker.md
CHANGED
@@ -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
|
data/lib/jetpacker/version.rb
CHANGED
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.
|
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.
|
293
|
-
changelog_uri: https://github.com/tongueroo/jetpacker/blob/v0.4.
|
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.
|
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
|