vimd 0.1.3 → 0.1.4
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/cli/commands/dev.js
CHANGED
|
@@ -33,8 +33,8 @@ export async function devCommand(filePath, options) {
|
|
|
33
33
|
Logger.error(`File not found: ${filePath}`);
|
|
34
34
|
process.exit(1);
|
|
35
35
|
}
|
|
36
|
-
// 4. Prepare output directory
|
|
37
|
-
const outputDir = path.join(process.cwd(), '
|
|
36
|
+
// 4. Prepare output directory (not starting with '.' to avoid live-server ignore)
|
|
37
|
+
const outputDir = path.join(process.cwd(), 'vimd-preview');
|
|
38
38
|
await fs.ensureDir(outputDir);
|
|
39
39
|
const htmlPath = path.join(outputDir, path.basename(filePath, path.extname(filePath)) + '.html');
|
|
40
40
|
// 5. Prepare converter
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/core/server.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKlD,qBAAa,UAAU;IAGT,OAAO,CAAC,MAAM;IAF1B,OAAO,CAAC,OAAO,CAAS;gBAEJ,MAAM,EAAE,YAAY;IAElC,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/core/server.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKlD,qBAAa,UAAU;IAGT,OAAO,CAAC,MAAM;IAF1B,OAAO,CAAC,OAAO,CAAS;gBAEJ,MAAM,EAAE,YAAY;IAElC,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA+BtC,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IAUrB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAS7C,MAAM,IAAI,MAAM;CAGjB"}
|
package/dist/core/server.js
CHANGED