@akilles/soundcloud-watcher 2.0.2 → 2.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 CHANGED
@@ -90,7 +90,6 @@ Not configured yet.
90
90
 
91
91
  2. Create config file:
92
92
  \`\`\`bash
93
- mkdir -p ~/.openclaw/secrets
94
93
  nano ~/.openclaw/secrets/soundcloud.env
95
94
  \`\`\`
96
95
 
@@ -179,5 +178,5 @@ MY_USERNAME=your_soundcloud_username
179
178
  },
180
179
  });
181
180
 
182
- logger.info?.('SoundCloud Watcher plugin loaded') || console.log('SoundCloud Watcher plugin loaded');
181
+ (logger.info ?? console.log).call(logger, 'SoundCloud Watcher plugin loaded');
183
182
  }
@@ -2,7 +2,7 @@
2
2
  "id": "soundcloud-watcher",
3
3
  "name": "SoundCloud Watcher",
4
4
  "description": "Monitor your SoundCloud account and track artist releases",
5
- "version": "2.0.2",
5
+ "version": "2.0.3",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akilles/soundcloud-watcher",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "OpenClaw plugin to monitor SoundCloud account and track artist releases",
5
5
  "main": "index.ts",
6
6
  "openclaw": {