react_on_rails 8.0.6.rc.0 → 8.0.6.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/lib/react_on_rails/version_checker.rb +2 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9da98617bcf3ae42007c264ce473ba41a19213bc
|
4
|
+
data.tar.gz: b340b887abb64d37142dcca88746faab4f5ecfef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae2dcc5ba53467bf4f8b17f9b08862c0049d8cfdb694b38a8dcf3a370c50c9d79578b087a2e1b78602195d3e4d948f1a80f9657be7a21263f940effa37fc54da
|
7
|
+
data.tar.gz: 5f7d8006d44c0f3f8cd71b7ad5d9b3bc384b566b857b59d9992505b80a5466df959ca24fe9a5b207120d562e959c114dfec34eccd8e6cb6b217d9e30bd7e1da8
|
data/CHANGELOG.md
CHANGED
@@ -10,7 +10,7 @@ Changes since last non-beta release.
|
|
10
10
|
|
11
11
|
### [8.0.6]
|
12
12
|
#### fixed
|
13
|
-
- Fixes server rendering when using a CDN. Server rendering would try to fetch a file with the "asset_host". This change updates the webpacker_lite dependency to 2.1.0 which has a new helper `pack_path`. [#901](https://github.com/shakacode/react_on_rails/pull/901) by [justin808](https://github.com/justin808).
|
13
|
+
- Fixes server rendering when using a CDN. Server rendering would try to fetch a file with the "asset_host". This change updates the webpacker_lite dependency to 2.1.0 which has a new helper `pack_path`. [#901](https://github.com/shakacode/react_on_rails/pull/901) by [justin808](https://github.com/justin808). Be sure to update webpacker_lite to 2.1.0.
|
14
14
|
- The package.json file created by the generator now creates minified javascript production builds by default. This was done by adding the -p flag to webpack on the build:production script. [#895](https://github.com/shakacode/react_on_rails/pull/895) by [serodriguez68 ](https://github.com/serodriguez68)
|
15
15
|
- Fixes GitUtils.uncommitted_changes? throwing an error when called in an environment without Git, and allows install generator to be run successfully with `--ignore-warnings` [#878](https://github.com/shakacode/react_on_rails/pull/878) by [jasonblalock](https://github.com/jasonblalock).
|
16
16
|
|
@@ -36,7 +36,8 @@ module ReactOnRails
|
|
36
36
|
" gem: #{gem_version}\n" \
|
37
37
|
" node package: #{node_package_version.raw}\n" \
|
38
38
|
"Ensure the installed version of the gem is the same as the version of \n"\
|
39
|
-
"your installed node package
|
39
|
+
"your installed node package.\n"\
|
40
|
+
"Run `cd client && yarn add react-on-rails`"
|
40
41
|
raise msg
|
41
42
|
end
|
42
43
|
|
data/package.json
CHANGED