react-on-rails 16.4.0 → 16.5.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.
- package/README.md +5 -5
- package/lib/StoreRegistry.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,11 +96,11 @@ rails generate react_on_rails:install
|
|
|
96
96
|
|
|
97
97
|
## Documentation
|
|
98
98
|
|
|
99
|
-
- [Getting Started](https://
|
|
100
|
-
- [Installation Guide](https://
|
|
101
|
-
- [API Reference](https://
|
|
102
|
-
- [Configuration](https://
|
|
99
|
+
- [Getting Started](https://reactonrails.com/docs/getting-started/quick-start/)
|
|
100
|
+
- [Installation Guide](https://reactonrails.com/docs/getting-started/installation-into-an-existing-rails-app/)
|
|
101
|
+
- [API Reference](https://reactonrails.com/docs/api-reference/)
|
|
102
|
+
- [Configuration](https://reactonrails.com/docs/configuration/)
|
|
103
103
|
|
|
104
104
|
## License
|
|
105
105
|
|
|
106
|
-
See [LICENSE.md](https://github.com/shakacode/react_on_rails/blob/
|
|
106
|
+
See [LICENSE.md](https://github.com/shakacode/react_on_rails/blob/main/LICENSE.md).
|
package/lib/StoreRegistry.js
CHANGED
|
@@ -100,7 +100,7 @@ This can happen if you are server rendering and either:
|
|
|
100
100
|
getOrWaitForStore(name) {
|
|
101
101
|
throw new Error(`getOrWaitForStore('${name}') is only available with React on Rails Pro. ` +
|
|
102
102
|
'Please upgrade to React on Rails Pro or use the synchronous getStore() method instead. ' +
|
|
103
|
-
'See https://
|
|
103
|
+
'See https://pro.reactonrails.com/ for more information.');
|
|
104
104
|
},
|
|
105
105
|
/**
|
|
106
106
|
* Get a store generator by name, or wait for it to be registered.
|
|
@@ -111,7 +111,7 @@ This can happen if you are server rendering and either:
|
|
|
111
111
|
getOrWaitForStoreGenerator(name) {
|
|
112
112
|
throw new Error(`getOrWaitForStoreGenerator('${name}') is only available with React on Rails Pro. ` +
|
|
113
113
|
'Please upgrade to React on Rails Pro or use the synchronous getStoreGenerator() method instead. ' +
|
|
114
|
-
'See https://
|
|
114
|
+
'See https://pro.reactonrails.com/ for more information.');
|
|
115
115
|
},
|
|
116
116
|
};
|
|
117
117
|
//# sourceMappingURL=StoreRegistry.js.map
|