omnilens 1.2.1 → 1.2.3

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/install.js +2 -1
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -6,7 +6,8 @@ const { existsSync, mkdirSync, chmodSync, unlinkSync, renameSync } = require("fs
6
6
  const { join } = require("path");
7
7
  const { execSync } = require("child_process");
8
8
 
9
- const VERSION = "v1.2.0";
9
+ const PKG = require(join(__dirname, "package.json"));
10
+ const VERSION = "v" + PKG.version;
10
11
  const REPO = "injaehwang/omnilens";
11
12
 
12
13
  const PLATFORMS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnilens",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Your AI's eyes into your codebase. Analyzes entire projects in milliseconds.",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "repository": {