Skip to content

Commit 0061016

Browse files
committed
Remove js-yaml peer dependency and mentions of removed webpackConfigLoader
1 parent 846d02d commit 0061016

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Changes since the last non-beta release.
2323
#### Fixed
2424

2525
- Separated streamServerRenderedReactComponent from the ReactOnRails object in order to stop users from getting errors during webpack compilation about needing the `stream-browserify` package. [PR 1680](https://github.com/shakacode/react_on_rails/pull/1680) by [judahmeek](https://github.com/judahmeek).
26+
- Removed obsolete `js-yaml` peer dependency. [PR 1678](https://github.com/shakacode/react_on_rails/pull/1678) by [alexeyr-ci](https://github.com/alexeyr-ci).
2627

2728
### [14.1.0] - 2025-01-06
2829

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
react_on_rails (15.0.0.alpha.1)
4+
react_on_rails (14.1.0)
55
addressable
66
connection_pool
77
execjs (~> 2.5)

docs/additional-details/manual-installation-overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ The only requirements within this directory for basic React on Rails integration
1717
1. Your JavaScript code "registers" any components and stores per the ReactOnRails APIs of ReactOnRails.register(components) and ReactOnRails.registerStore(stores). See [our javascript API docs](https://www.shakacode.com/react-on-rails/docs/api/javascript-api/) and the [ReactOnRails.js source](https://github.com/shakacode/react_on_rails/tree/master/node_package/src/ReactOnRails.js).
1818
1. Set your registration file as an "entry" point in your Webpack configs.
1919
1. Add the [Manifest plugin](https://github.com/danethurber/webpack-manifest-plugin) to your config.
20-
The default path: `public/webpack` can be loaded with webpackConfigLoader as shown in the dummy example.
2120
1. You create scripts in `client/package.json` per the example apps. These are used for building your Webpack assets. Also do this for your top level `package.json`.
2221

2322
## Rails Steps (outside of /client)

docs/guides/webpack-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can access values in the `config/shakapacker.yml`
3636
const { config, devServer } = require('shakapacker');
3737
```
3838

39-
You will want consider using some of the same values set in these files:
39+
You will want to consider using some of the same values set in these files:
4040

4141
* https://github.com/shakacode/shakapacker/blob/master/package/environments/base.js
4242
* https://github.com/shakacode/shakapacker/blob/master/package/environments/development.js

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
"@babel/runtime-corejs3": "^7.12.5"
5656
},
5757
"peerDependencies": {
58-
"js-yaml": ">= 3.0.0",
5958
"react": ">= 16",
6059
"react-dom": ">= 16"
6160
},

0 commit comments

Comments
 (0)