projax 1.0.1 → 1.0.2

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/index.js +13 -13
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -42,21 +42,21 @@ const script_runner_1 = require("./script-runner");
42
42
  const port_scanner_1 = require("./port-scanner");
43
43
  // Read version from package.json
44
44
  const packageJson = require('../package.json');
45
- // ASCII logo for projax
45
+ // ASCII logo for projax - using a clearer style that shows all 6 letters
46
46
  function displayLogo() {
47
47
  return `
48
- ╔═══════════════════════════════════════╗
49
-
50
- ██████╗ ██████╗ ██████╗ ██╗ ║
51
- ██╔══██╗██╔══██╗██╔═══██╗ ██║ ║
52
- ██████╔╝██████╔╝██║ ██║ ██║
53
- ██╔═══╝ ██╔══██╗██║ ██║██ ██║
54
- ██║ ██║ ██║╚██████╔╝╚█████╔╝
55
- ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚════╝
56
-
57
- Project Management CLI
58
-
59
- ╚═══════════════════════════════════════╝
48
+ ╔═══════════════════════════════════════════════════════╗
49
+
50
+ ██████╗ ██████╗ ██████╗ ██╗ ██╗ █████╗ ██╗
51
+ ██╔══██╗██╔══██╗██╔═══██╗ ██║ ██║██╔══██╗╚██╗
52
+ ██████╔╝██████╔╝██║ ██║ ███████║╚█████╔╝ ╚██║
53
+ ██╔═══╝ ██╔══██╗██║ ██║██ ██╔══██║██╔══██╗ ██║
54
+ ██║ ██║ ██║╚██████╔╝╚█████╔╝██║╚█████╔╝ ██║
55
+ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚════╝ ╚═╝ ╚════╝ ╚═╝
56
+
57
+ Version ${packageJson.version}
58
+
59
+ ╚═══════════════════════════════════════════════════════╝
60
60
  `;
61
61
  }
62
62
  const program = new commander_1.Command();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projax",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool for managing local development projects",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -12,7 +12,7 @@
12
12
  "copy:electron": "mkdir -p dist/electron && cp -r ../electron/dist/* dist/electron/ && cp dist/script-runner.* dist/electron/ && cp dist/port-*.* dist/electron/",
13
13
  "build:all": "npm run build && npm run build:electron && npm run copy:electron",
14
14
  "clean": "rm -rf dist",
15
- "prepublishOnly": "npm run build:all",
15
+ "prepublishOnly": "npm run build",
16
16
  "postinstall": "node rebuild-sqlite.js || true",
17
17
  "rebuild:electron": "node rebuild-sqlite.js"
18
18
  },