sysml-validate 0.22.0 → 0.24.0
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 +2 -2
- 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
|
@@ -63022,7 +63022,7 @@ ${baseIndent}}`;
|
|
|
63022
63022
|
return;
|
|
63023
63023
|
const expected = interfaceEndTypes(definition);
|
|
63024
63024
|
const connect = decl.connect;
|
|
63025
|
-
const written = [connect?.source, connect?.target];
|
|
63025
|
+
const written = connect?.ends?.length ? connect.ends : [connect?.source, connect?.target];
|
|
63026
63026
|
if (expected.length !== written.length)
|
|
63027
63027
|
return;
|
|
63028
63028
|
for (let position = 0; position < written.length; position += 1) {
|
|
@@ -72319,7 +72319,7 @@ async function runValidation(command) {
|
|
|
72319
72319
|
}
|
|
72320
72320
|
|
|
72321
72321
|
// src/main.ts
|
|
72322
|
-
var VERSION2 = true ? "0.
|
|
72322
|
+
var VERSION2 = true ? "0.24.0" : "dev";
|
|
72323
72323
|
async function main(argv) {
|
|
72324
72324
|
const command = parseArgs(argv);
|
|
72325
72325
|
if (command.kind === "help") {
|