vovk 3.0.0-draft.446 → 3.0.0-draft.448
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/cjs/client/createRPC.js
CHANGED
|
@@ -28,7 +28,7 @@ const createRPC = (givenSchema, segmentName, rpcModuleName, givenFetcher, option
|
|
|
28
28
|
const client = {};
|
|
29
29
|
if (!controllerSchema) {
|
|
30
30
|
// eslint-disable-next-line no-console
|
|
31
|
-
console.warn(
|
|
31
|
+
console.warn(`🐺 Unable to create RPC module. Controller schema is missing for module "${rpcModuleName}" from segment "${segmentName}". Assuming that schema is not ready yet and a segment is importing an uncompiled RPC module.`);
|
|
32
32
|
controllerSchema = {
|
|
33
33
|
rpcModuleName,
|
|
34
34
|
prefix: '',
|
package/mjs/client/createRPC.js
CHANGED
|
@@ -28,7 +28,7 @@ const createRPC = (givenSchema, segmentName, rpcModuleName, givenFetcher, option
|
|
|
28
28
|
const client = {};
|
|
29
29
|
if (!controllerSchema) {
|
|
30
30
|
// eslint-disable-next-line no-console
|
|
31
|
-
console.warn(
|
|
31
|
+
console.warn(`🐺 Unable to create RPC module. Controller schema is missing for module "${rpcModuleName}" from segment "${segmentName}". Assuming that schema is not ready yet and a segment is importing an uncompiled RPC module.`);
|
|
32
32
|
controllerSchema = {
|
|
33
33
|
rpcModuleName,
|
|
34
34
|
prefix: '',
|