@serviceme/devtools-protocol 0.1.4 → 0.1.5
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.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -360,7 +360,7 @@ declare const COPILOT_ERROR_CODES: {
|
|
|
360
360
|
readonly TIMEOUT: "copilot_timeout";
|
|
361
361
|
};
|
|
362
362
|
|
|
363
|
-
declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "dotnet", "nuget"];
|
|
363
|
+
declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "rtk", "dotnet", "nuget"];
|
|
364
364
|
type KnownEnvironmentTool = (typeof KNOWN_ENVIRONMENT_TOOLS)[number];
|
|
365
365
|
interface ToolCheckResult {
|
|
366
366
|
installed: boolean;
|
|
@@ -427,7 +427,7 @@ declare function isJsonOutputResult(value: unknown): value is {
|
|
|
427
427
|
};
|
|
428
428
|
|
|
429
429
|
declare const SERVICEME_CLI_NAME = "serviceme";
|
|
430
|
-
declare const SERVICEME_CLI_VERSION = "0.1.
|
|
430
|
+
declare const SERVICEME_CLI_VERSION = "0.1.5";
|
|
431
431
|
declare const SERVICEME_CLI_CAPABILITIES: {
|
|
432
432
|
readonly bridge: true;
|
|
433
433
|
readonly tasks: 1;
|
package/dist/index.d.ts
CHANGED
|
@@ -360,7 +360,7 @@ declare const COPILOT_ERROR_CODES: {
|
|
|
360
360
|
readonly TIMEOUT: "copilot_timeout";
|
|
361
361
|
};
|
|
362
362
|
|
|
363
|
-
declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "dotnet", "nuget"];
|
|
363
|
+
declare const KNOWN_ENVIRONMENT_TOOLS: readonly ["git", "node", "npm", "pnpm", "nvm", "nrm", "rtk", "dotnet", "nuget"];
|
|
364
364
|
type KnownEnvironmentTool = (typeof KNOWN_ENVIRONMENT_TOOLS)[number];
|
|
365
365
|
interface ToolCheckResult {
|
|
366
366
|
installed: boolean;
|
|
@@ -427,7 +427,7 @@ declare function isJsonOutputResult(value: unknown): value is {
|
|
|
427
427
|
};
|
|
428
428
|
|
|
429
429
|
declare const SERVICEME_CLI_NAME = "serviceme";
|
|
430
|
-
declare const SERVICEME_CLI_VERSION = "0.1.
|
|
430
|
+
declare const SERVICEME_CLI_VERSION = "0.1.5";
|
|
431
431
|
declare const SERVICEME_CLI_CAPABILITIES: {
|
|
432
432
|
readonly bridge: true;
|
|
433
433
|
readonly tasks: 1;
|
package/dist/index.js
CHANGED
|
@@ -294,6 +294,7 @@ var KNOWN_ENVIRONMENT_TOOLS = [
|
|
|
294
294
|
"pnpm",
|
|
295
295
|
"nvm",
|
|
296
296
|
"nrm",
|
|
297
|
+
"rtk",
|
|
297
298
|
"dotnet",
|
|
298
299
|
"nuget"
|
|
299
300
|
];
|
|
@@ -502,7 +503,7 @@ function isJsonOutputResult(value) {
|
|
|
502
503
|
|
|
503
504
|
// src/metadata.ts
|
|
504
505
|
var SERVICEME_CLI_NAME = "serviceme";
|
|
505
|
-
var SERVICEME_CLI_VERSION = "0.1.
|
|
506
|
+
var SERVICEME_CLI_VERSION = "0.1.5";
|
|
506
507
|
var SERVICEME_CLI_CAPABILITIES = {
|
|
507
508
|
bridge: true,
|
|
508
509
|
tasks: 1,
|
package/dist/index.mjs
CHANGED
|
@@ -203,6 +203,7 @@ var KNOWN_ENVIRONMENT_TOOLS = [
|
|
|
203
203
|
"pnpm",
|
|
204
204
|
"nvm",
|
|
205
205
|
"nrm",
|
|
206
|
+
"rtk",
|
|
206
207
|
"dotnet",
|
|
207
208
|
"nuget"
|
|
208
209
|
];
|
|
@@ -411,7 +412,7 @@ function isJsonOutputResult(value) {
|
|
|
411
412
|
|
|
412
413
|
// src/metadata.ts
|
|
413
414
|
var SERVICEME_CLI_NAME = "serviceme";
|
|
414
|
-
var SERVICEME_CLI_VERSION = "0.1.
|
|
415
|
+
var SERVICEME_CLI_VERSION = "0.1.5";
|
|
415
416
|
var SERVICEME_CLI_CAPABILITIES = {
|
|
416
417
|
bridge: true,
|
|
417
418
|
tasks: 1,
|
package/package.json
CHANGED