@zenithbuild/cli 0.5.0-beta.2.5 → 0.5.0-beta.2.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.
Files changed (2) hide show
  1. package/dist/build.js +1 -1
  2. package/package.json +3 -3
package/dist/build.js CHANGED
@@ -84,7 +84,7 @@ function runCompiler(filePath, stdinSource, compilerOpts = {}) {
84
84
  ? ['--stdin', filePath]
85
85
  : [filePath];
86
86
  if (compilerOpts?.experimentalEmbeddedMarkup) {
87
- args.push('--experimental-embedded-markup');
87
+ args.push('--embedded-markup-expressions');
88
88
  }
89
89
  const opts = { encoding: 'utf8' };
90
90
  if (stdinSource !== undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenithbuild/cli",
3
- "version": "0.5.0-beta.2.5",
3
+ "version": "0.5.0-beta.2.6",
4
4
  "description": "Deterministic project orchestrator for Zenith framework",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,7 +24,7 @@
24
24
  "prepublishOnly": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "@zenithbuild/compiler": "0.5.0-beta.2.5"
27
+ "@zenithbuild/compiler": "0.5.0-beta.2.6"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@jest/globals": "^30.2.0",
@@ -32,4 +32,4 @@
32
32
  "jest-environment-jsdom": "^30.2.0"
33
33
  },
34
34
  "private": false
35
- }
35
+ }