@nuucognition/flint-cli 0.5.6-dev.4 → 0.5.6-dev.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/{chunk-WMXC6KO6.js → chunk-BF3SKNVR.js} +448 -948
- package/dist/{chunk-6MPRSFXI.js → chunk-IUKEMLPH.js} +4 -4
- package/dist/chunk-JCALNZ4D.js +936 -0
- package/dist/{chunk-X6OG5PEE.js → chunk-JNIJ5JV6.js} +2 -2
- package/dist/{chunk-CBGQBE6C.js → chunk-LLLVBA4Q.js} +17 -3
- package/dist/{chunk-M3NSYVYR.js → chunk-RD3WIRZN.js} +2 -2
- package/dist/{dist-EAYA2DAP.js → dist-MNBUCH3R.js} +34 -20
- package/dist/{exports-FO5IMLM7-4DUGQDXH.js → exports-VR7XB6MC-5N77WY3S.js} +2 -2
- package/dist/index.js +2543 -1603
- package/dist/{mesh-config-BAIYF4KD-Q3ZCQOCZ.js → mesh-config-NTGFUNZL-BZ2GO3JY.js} +3 -1
- package/dist/{metadata-SJT4H53O-LEFHYM5Q.js → metadata-FASTWX6A-ITKM6C62.js} +2 -2
- package/dist/plates-UD55BGK4-HV7L7MQX.js +42 -0
- package/dist/{registry-YN5W7EY7-J52KXGG5.js → registry-5CNUVQN3-PCQZRXLB.js} +1 -1
- package/package.json +6 -4
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
readFlintToml
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LLLVBA4Q.js";
|
|
4
4
|
|
|
5
|
-
// ../../packages/flint/dist/chunk-
|
|
5
|
+
// ../../packages/flint/dist/chunk-NRALZ6JV.js
|
|
6
6
|
import { readdir, readFile, mkdir, writeFile, rm, stat, copyFile } from "fs/promises";
|
|
7
7
|
import { join, basename, dirname, resolve, relative, sep, extname } from "path";
|
|
8
8
|
async function exists(path) {
|
|
@@ -218,7 +218,7 @@ function getDisambiguatedExportName(flintPath, sourcePath, baseName) {
|
|
|
218
218
|
return `${baseName} (${dirLabel})`;
|
|
219
219
|
}
|
|
220
220
|
async function scanExports(flintPath) {
|
|
221
|
-
const { readFlintToml: readFlintToml2 } = await import("./mesh-config-
|
|
221
|
+
const { readFlintToml: readFlintToml2 } = await import("./mesh-config-NTGFUNZL-BZ2GO3JY.js");
|
|
222
222
|
const config = await readFlintToml2(flintPath);
|
|
223
223
|
const declarations = config?.exports?.required;
|
|
224
224
|
if (!declarations || declarations.length === 0) {
|
|
@@ -245,7 +245,7 @@ async function scanExportsFromConfig(flintPath, declarations) {
|
|
|
245
245
|
async function scanExportEligible(flintPath) {
|
|
246
246
|
const meshDir = join(flintPath, "Mesh");
|
|
247
247
|
if (!await exists(meshDir)) return [];
|
|
248
|
-
const { readFlintToml: readFlintToml2 } = await import("./mesh-config-
|
|
248
|
+
const { readFlintToml: readFlintToml2 } = await import("./mesh-config-NTGFUNZL-BZ2GO3JY.js");
|
|
249
249
|
const config = await readFlintToml2(flintPath);
|
|
250
250
|
const declared = new Set(
|
|
251
251
|
(config?.exports?.required || []).map((d) => d.file.replace(/\.md$/, "").toLowerCase())
|