juxscript 1.0.41 → 1.0.43

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/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -252,7 +252,7 @@ async function buildProject(isServe = false, wsPort = 3001) {
252
252
  build: 'jux build'
253
253
  },
254
254
  dependencies: {
255
- juxscript: '^1.0.8'
255
+ juxscript: 'latest' // ✅ Changed from '^1.0.8' to 'latest'
256
256
  }
257
257
  };
258
258
  fs.writeFileSync('package.json', JSON.stringify(packageJson, null, 2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "lib/jux.js",