yamchart 0.3.4 → 0.3.6
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/{chunk-A24KVXJQ.js → chunk-7HKIUUVE.js} +26 -9
- package/dist/chunk-7HKIUUVE.js.map +1 -0
- package/dist/{chunk-LL3VKMZM.js → chunk-UHJGHWDE.js} +86 -24
- package/dist/chunk-UHJGHWDE.js.map +1 -0
- package/dist/{dev-PTVNJI7G.js → dev-PWY7UVIO.js} +72 -5
- package/dist/dev-PWY7UVIO.js.map +1 -0
- package/dist/{dist-JKJLH3F6.js → dist-H363SX4Y.js} +2 -2
- package/dist/index.js +4 -4
- package/dist/public/assets/{index-eDQyKtAA.js → index-DY3hJB9N.js} +96 -96
- package/dist/public/assets/{index.es-BMf7uM-9.js → index.es-DTRIdI7C.js} +1 -1
- package/dist/public/index.html +1 -1
- package/dist/{test-WYNX4RYZ.js → test-5QJ5GMND.js} +2 -2
- package/package.json +4 -7
- package/dist/chunk-A24KVXJQ.js.map +0 -1
- package/dist/chunk-LL3VKMZM.js.map +0 -1
- package/dist/dev-PTVNJI7G.js.map +0 -1
- /package/dist/{dist-JKJLH3F6.js.map → dist-H363SX4Y.js.map} +0 -0
- /package/dist/{test-WYNX4RYZ.js.map → test-5QJ5GMND.js.map} +0 -0
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
runAssertion,
|
|
25
25
|
runModel,
|
|
26
26
|
templateHasVariable
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-UHJGHWDE.js";
|
|
28
28
|
import "./chunk-DGUM43GV.js";
|
|
29
29
|
export {
|
|
30
30
|
DATE_PRESETS,
|
|
@@ -53,4 +53,4 @@ export {
|
|
|
53
53
|
runModel,
|
|
54
54
|
templateHasVariable
|
|
55
55
|
};
|
|
56
|
-
//# sourceMappingURL=dist-
|
|
56
|
+
//# sourceMappingURL=dist-H363SX4Y.js.map
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
findProjectRoot,
|
|
7
7
|
loadEnvFile,
|
|
8
8
|
validateProject
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-7HKIUUVE.js";
|
|
10
10
|
import {
|
|
11
11
|
detail,
|
|
12
12
|
error,
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
success,
|
|
18
18
|
warning
|
|
19
19
|
} from "./chunk-HJVVHYVN.js";
|
|
20
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-UHJGHWDE.js";
|
|
21
21
|
import "./chunk-DGUM43GV.js";
|
|
22
22
|
|
|
23
23
|
// src/index.ts
|
|
@@ -95,7 +95,7 @@ program.command("dev").description("Start development server with hot reload").a
|
|
|
95
95
|
detail("Run this command from a yamchart project directory");
|
|
96
96
|
process.exit(2);
|
|
97
97
|
}
|
|
98
|
-
const { runDevServer } = await import("./dev-
|
|
98
|
+
const { runDevServer } = await import("./dev-PWY7UVIO.js");
|
|
99
99
|
await runDevServer(projectDir, {
|
|
100
100
|
port: parseInt(options.port, 10),
|
|
101
101
|
apiOnly: options.apiOnly ?? false,
|
|
@@ -194,7 +194,7 @@ program.command("test").description("Run model tests (@returns schema checks and
|
|
|
194
194
|
}
|
|
195
195
|
loadEnvFile(projectDir);
|
|
196
196
|
try {
|
|
197
|
-
const { testProject, formatTestOutput } = await import("./test-
|
|
197
|
+
const { testProject, formatTestOutput } = await import("./test-5QJ5GMND.js");
|
|
198
198
|
const result = await testProject(projectDir, model, {
|
|
199
199
|
connection: options.connection,
|
|
200
200
|
json: options.json
|