@moltnet/guard 1.0.2 → 1.0.3
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/index.ts +3 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -252,7 +252,9 @@ const register: PluginRegisterFn = (api: PluginAPI) => {
|
|
|
252
252
|
const config = api.config.plugins?.entries?.guard?.config as MoltGuardConfig | undefined;
|
|
253
253
|
|
|
254
254
|
if (!config?.token) {
|
|
255
|
-
console.log('[moltguard] No token configured.
|
|
255
|
+
console.log('[moltguard] No token configured.');
|
|
256
|
+
console.log('[moltguard] 👉 Get your token: https://guard.moltnet.ai/signup');
|
|
257
|
+
console.log('[moltguard] Then add to config: plugins.entries.guard.config.token');
|
|
256
258
|
return;
|
|
257
259
|
}
|
|
258
260
|
|