sysml-validate 0.10.16 → 0.10.17
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/out/main.js +5 -3
- package/out/main.js.map +2 -2
- package/package.json +1 -1
- package/resources/sysml.dimension-table.json +1 -1
package/out/main.js
CHANGED
|
@@ -68356,8 +68356,10 @@ async function runValidation(command) {
|
|
|
68356
68356
|
fromDir: path10.dirname(fileURLToPath(import.meta.url)),
|
|
68357
68357
|
library: command.library,
|
|
68358
68358
|
// A validator invocation is scoped exactly to the paths the user named.
|
|
68359
|
-
//
|
|
68360
|
-
|
|
68359
|
+
// Do not even initialize the inferred repository as a workspace: its
|
|
68360
|
+
// project-marker detection walks the folder before indexing can be
|
|
68361
|
+
// skipped. Project-wide discovery is an explicit --workspace opt-in.
|
|
68362
|
+
workspaceFolders: workspaceRoot === void 0 ? [] : [workspaceRoot],
|
|
68361
68363
|
skipWorkspaceIndex: workspaceRoot === void 0
|
|
68362
68364
|
});
|
|
68363
68365
|
const documents = [];
|
|
@@ -68375,7 +68377,7 @@ async function runValidation(command) {
|
|
|
68375
68377
|
}
|
|
68376
68378
|
|
|
68377
68379
|
// src/main.ts
|
|
68378
|
-
var VERSION2 = true ? "0.10.
|
|
68380
|
+
var VERSION2 = true ? "0.10.17" : "dev";
|
|
68379
68381
|
async function main(argv) {
|
|
68380
68382
|
const command = parseArgs(argv);
|
|
68381
68383
|
if (command.kind === "help") {
|