@serviceme/devtools-core 0.1.2 → 0.1.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/dist/index.js CHANGED
@@ -1408,7 +1408,11 @@ var executors = {
1408
1408
  github_copilot_cli: new GithubCopilotCliExecutor()
1409
1409
  };
1410
1410
  function getExecutor(taskType) {
1411
- return executors[taskType];
1411
+ const executor = executors[taskType];
1412
+ if (!executor) {
1413
+ throw new Error(`Unsupported bridge task type: ${taskType}`);
1414
+ }
1415
+ return executor;
1412
1416
  }
1413
1417
 
1414
1418
  // src/scheduled-tasks/TaskConfigManager.ts
package/dist/index.mjs CHANGED
@@ -1376,7 +1376,11 @@ var executors = {
1376
1376
  github_copilot_cli: new GithubCopilotCliExecutor()
1377
1377
  };
1378
1378
  function getExecutor(taskType) {
1379
- return executors[taskType];
1379
+ const executor = executors[taskType];
1380
+ if (!executor) {
1381
+ throw new Error(`Unsupported bridge task type: ${taskType}`);
1382
+ }
1383
+ return executor;
1380
1384
  }
1381
1385
 
1382
1386
  // src/scheduled-tasks/TaskConfigManager.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceme/devtools-core",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Reusable Node.js core capabilities powering the SERVICEME CLI and integrations.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "repository": {
@@ -36,7 +36,7 @@
36
36
  "comment-json": "^4.5.1",
37
37
  "json5": "^2.2.3",
38
38
  "yauzl": "^3.2.0",
39
- "@serviceme/devtools-protocol": "0.1.2"
39
+ "@serviceme/devtools-protocol": "0.1.3"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^24",