@alcedocore/cli 0.0.1-rc.3 → 0.0.1-rc.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alcedocore/cli",
3
- "version": "0.0.1-rc.3",
3
+ "version": "0.0.1-rc.4",
4
4
  "description": "Alcedo plugin development CLI - scaffold, develop, and test plugins",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "test-node",
3
3
  "version": "1.0.0",
4
- "description": "A plugin for Alcedo.",
4
+ "description": "A plugin for AlcedoCore.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "dev": "npx tsx server.ts",
@@ -23,7 +23,7 @@ app.get("/settings", async (_req, res) => {
23
23
  },
24
24
  });
25
25
  res.json({ slug: PLUGIN_SLUG, settings });
26
- } catch (err) {
26
+ } catch (err: any) {
27
27
  res.status(500).json({ slug: PLUGIN_SLUG, error: err.message });
28
28
  }
29
29
  });