@ezetgalaxy/titan 26.6.5 → 26.6.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/index.js +5 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -415,6 +415,11 @@ function createExtension(name) {
415
415
  }
416
416
  };
417
417
 
418
+ const idxPath = path.join(target, "index.js");
419
+ const readmePath = path.join(target, "README.md");
420
+ const pkgPath = path.join(target, "package.json");
421
+ const cargoPath = path.join(target, "native", "Cargo.toml");
422
+
418
423
  replaceAll(path.join(target, "titan.json"));
419
424
  replaceAll(idxPath);
420
425
  replaceAll(readmePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ezetgalaxy/titan",
3
- "version": "26.6.5",
3
+ "version": "26.6.6",
4
4
  "description": "Titan Planet is a JavaScript-first backend framework that embeds JS actions into a Rust + Axum server and ships as a single native binary. Routes are compiled to static metadata; only actions run in the embedded JS runtime. No Node.js. No event loop in production.",
5
5
  "license": "ISC",
6
6
  "author": "ezetgalaxy",