@vibgrate/cli 1.0.70 → 1.0.71
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.
|
@@ -2125,15 +2125,47 @@ var KNOWN_DOTNET_FRAMEWORKS = {
|
|
|
2125
2125
|
"LiteDB": "LiteDB",
|
|
2126
2126
|
"RavenDB.Client": "RavenDB",
|
|
2127
2127
|
// ── Hosting & Configuration ──
|
|
2128
|
+
// All Microsoft.Extensions.* and System.* packages that ship as part of the
|
|
2129
|
+
// .NET SDK release train are prefixed with '.NET ' so that the dashboard can
|
|
2130
|
+
// group them under a single '.NET X.Y.Z → A.B.C' header when they all move
|
|
2131
|
+
// together (e.g. .NET 8 → 10 upgrade).
|
|
2128
2132
|
"Microsoft.Extensions.Hosting": ".NET Hosting",
|
|
2133
|
+
"Microsoft.Extensions.Hosting.Abstractions": ".NET Hosting Abstractions",
|
|
2129
2134
|
"Microsoft.Extensions.DependencyInjection": ".NET DI",
|
|
2135
|
+
"Microsoft.Extensions.DependencyInjection.Abstractions": ".NET DI Abstractions",
|
|
2130
2136
|
"Microsoft.Extensions.Configuration": ".NET Configuration",
|
|
2137
|
+
"Microsoft.Extensions.Configuration.Abstractions": ".NET Configuration Abstractions",
|
|
2138
|
+
"Microsoft.Extensions.Configuration.Binder": ".NET Configuration Binder",
|
|
2139
|
+
"Microsoft.Extensions.Configuration.EnvironmentVariables": ".NET Configuration EnvVars",
|
|
2140
|
+
"Microsoft.Extensions.Configuration.Json": ".NET Configuration JSON",
|
|
2141
|
+
"Microsoft.Extensions.Configuration.UserSecrets": ".NET Configuration UserSecrets",
|
|
2131
2142
|
"Microsoft.Extensions.Logging": ".NET Logging",
|
|
2143
|
+
"Microsoft.Extensions.Logging.Abstractions": ".NET Logging Abstractions",
|
|
2144
|
+
"Microsoft.Extensions.Logging.Console": ".NET Logging Console",
|
|
2145
|
+
"Microsoft.Extensions.Logging.Debug": ".NET Logging Debug",
|
|
2146
|
+
"Microsoft.Extensions.Logging.EventSource": ".NET Logging EventSource",
|
|
2132
2147
|
"Microsoft.Extensions.Options": ".NET Options",
|
|
2148
|
+
"Microsoft.Extensions.Options.ConfigurationExtensions": ".NET Options Configuration",
|
|
2149
|
+
"Microsoft.Extensions.Options.DataAnnotations": ".NET Options DataAnnotations",
|
|
2133
2150
|
"Microsoft.Extensions.Caching.Memory": ".NET Memory Cache",
|
|
2151
|
+
"Microsoft.Extensions.Caching.Abstractions": ".NET Caching Abstractions",
|
|
2134
2152
|
"Microsoft.Extensions.Caching.StackExchangeRedis": ".NET Redis Cache",
|
|
2135
2153
|
"Microsoft.Extensions.Http": ".NET HttpClientFactory",
|
|
2154
|
+
"Microsoft.Extensions.Http.Resilience": ".NET HttpClient Resilience",
|
|
2136
2155
|
"Microsoft.Extensions.Resilience": ".NET Resilience",
|
|
2156
|
+
"Microsoft.Extensions.Diagnostics": ".NET Diagnostics",
|
|
2157
|
+
"Microsoft.Extensions.Diagnostics.HealthChecks": ".NET Health Checks (Extensions)",
|
|
2158
|
+
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": ".NET Health Checks Abstractions",
|
|
2159
|
+
"Microsoft.Extensions.FileProviders.Abstractions": ".NET File Providers",
|
|
2160
|
+
"Microsoft.Extensions.FileProviders.Physical": ".NET File Providers Physical",
|
|
2161
|
+
"Microsoft.Extensions.Localization": ".NET Localization",
|
|
2162
|
+
"Microsoft.Extensions.Localization.Abstractions": ".NET Localization Abstractions",
|
|
2163
|
+
"Microsoft.Extensions.Primitives": ".NET Primitives",
|
|
2164
|
+
// System.* packages that ship with the .NET SDK
|
|
2165
|
+
"System.Text.Json": ".NET System.Text.Json",
|
|
2166
|
+
"System.Text.Encodings.Web": ".NET System.Text.Encodings.Web",
|
|
2167
|
+
"System.Net.Http.Json": ".NET System.Net.Http.Json",
|
|
2168
|
+
"System.ComponentModel.Annotations": ".NET ComponentModel Annotations",
|
|
2137
2169
|
// ── CQRS & Mediator ──
|
|
2138
2170
|
"MediatR": "MediatR",
|
|
2139
2171
|
"Wolverine": "Wolverine",
|
|
@@ -2147,7 +2179,8 @@ var KNOWN_DOTNET_FRAMEWORKS = {
|
|
|
2147
2179
|
"FluentValidation.AspNetCore": "FluentValidation ASP.NET",
|
|
2148
2180
|
// ── Serialization ──
|
|
2149
2181
|
"Newtonsoft.Json": "Newtonsoft.Json",
|
|
2150
|
-
|
|
2182
|
+
// Note: System.Text.Json is defined above under '── Hosting & Configuration ──'
|
|
2183
|
+
// as a .NET platform package so it groups with other .NET SDK packages.
|
|
2151
2184
|
"MessagePack": "MessagePack",
|
|
2152
2185
|
"protobuf-net": "protobuf-net",
|
|
2153
2186
|
"CsvHelper": "CsvHelper",
|
|
@@ -2269,6 +2302,9 @@ var KNOWN_DOTNET_FRAMEWORKS = {
|
|
|
2269
2302
|
"Microsoft.AspNetCore.SignalR.Client": "SignalR Client"
|
|
2270
2303
|
};
|
|
2271
2304
|
var LATEST_DOTNET_MAJOR = 9;
|
|
2305
|
+
function normalizePath(p) {
|
|
2306
|
+
return p.replace(/\\/g, "/");
|
|
2307
|
+
}
|
|
2272
2308
|
function parseTfmMajor(tfm) {
|
|
2273
2309
|
const match = tfm.match(/^net(\d+)\.\d+$/);
|
|
2274
2310
|
if (match?.[1]) return parseInt(match[1], 10);
|
|
@@ -2352,7 +2388,7 @@ async function scanDotnetProjects(rootDir, nugetCache, cache) {
|
|
|
2352
2388
|
if (result.ok) {
|
|
2353
2389
|
results.push(result.value);
|
|
2354
2390
|
} else {
|
|
2355
|
-
const relPath = path5.relative(rootDir, path5.dirname(csprojPath));
|
|
2391
|
+
const relPath = normalizePath(path5.relative(rootDir, path5.dirname(csprojPath)));
|
|
2356
2392
|
if (cache) {
|
|
2357
2393
|
cache.addStuckPath(relPath || ".");
|
|
2358
2394
|
}
|
|
@@ -2447,7 +2483,7 @@ async function scanOneCsproj(csprojPath, rootDir, nugetCache, cache) {
|
|
|
2447
2483
|
}
|
|
2448
2484
|
const projectReferences = data.projectReferences.map((refPath) => {
|
|
2449
2485
|
const absRefPath = path5.resolve(csprojDir, refPath);
|
|
2450
|
-
const relRefPath = path5.relative(rootDir, path5.dirname(absRefPath));
|
|
2486
|
+
const relRefPath = normalizePath(path5.relative(rootDir, path5.dirname(absRefPath)));
|
|
2451
2487
|
const refName = path5.basename(absRefPath, ".csproj");
|
|
2452
2488
|
return {
|
|
2453
2489
|
path: relRefPath || ".",
|
|
@@ -2469,7 +2505,7 @@ async function scanOneCsproj(csprojPath, rootDir, nugetCache, cache) {
|
|
|
2469
2505
|
const buckets = bucketsMut;
|
|
2470
2506
|
return {
|
|
2471
2507
|
type: "dotnet",
|
|
2472
|
-
path: path5.relative(rootDir, csprojDir) || ".",
|
|
2508
|
+
path: normalizePath(path5.relative(rootDir, csprojDir)) || ".",
|
|
2473
2509
|
name: data.projectName,
|
|
2474
2510
|
targetFramework,
|
|
2475
2511
|
runtime: primaryTfm,
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
baselineCommand
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-SEMFRCWZ.js";
|
|
5
5
|
import {
|
|
6
6
|
VERSION,
|
|
7
7
|
dsnCommand,
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
pushCommand,
|
|
11
11
|
scanCommand,
|
|
12
12
|
writeDefaultConfig
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-AOCAJJFK.js";
|
|
14
14
|
import {
|
|
15
15
|
ensureDir,
|
|
16
16
|
pathExists,
|
|
@@ -39,7 +39,7 @@ var initCommand = new Command("init").description("Initialize vibgrate in a proj
|
|
|
39
39
|
console.log(chalk.green("\u2714") + ` Created ${chalk.bold("vibgrate.config.ts")}`);
|
|
40
40
|
}
|
|
41
41
|
if (opts.baseline) {
|
|
42
|
-
const { runBaseline } = await import("./baseline-
|
|
42
|
+
const { runBaseline } = await import("./baseline-FBU3K6U7.js");
|
|
43
43
|
await runBaseline(rootDir);
|
|
44
44
|
}
|
|
45
45
|
console.log("");
|
package/dist/index.js
CHANGED