@microtronics/studio-cli 0.27.3 → 0.28.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/CHANGELOG.md +8 -0
- package/dist/studio-cli.d.ts +3 -3
- package/out/dlo/CustomWasmFS.js +227 -0
- package/out/dlo/compiler.js +40 -40
- package/out/dlo/dlo.js +2 -1
- package/out/dlo/dlocc.js +188 -238
- package/out/package/package.js +1 -1
- package/package.json +1 -1
package/out/package/package.js
CHANGED
|
@@ -288,7 +288,7 @@ async function buildDDE(cwd, fs, logger) {
|
|
|
288
288
|
return result.diagnostics;
|
|
289
289
|
}
|
|
290
290
|
async function buildDLO(cwd, fs, logger) {
|
|
291
|
-
const compiler = new compiler_1.DloCompiler(logger);
|
|
291
|
+
const compiler = new compiler_1.DloCompiler(cwd, fs, logger);
|
|
292
292
|
const { diagnostics } = await compiler.compile(cwd, fs);
|
|
293
293
|
return diagnostics;
|
|
294
294
|
}
|