projax 3.3.53 → 3.3.55
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.
- package/dist/core-bridge.d.ts +1 -1
- package/dist/core-bridge.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -2
package/dist/core-bridge.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const getDatabaseManager: typeof import("projax-core").getDatabaseManager, getAllProjects: typeof import("projax-core").getAllProjects, addProject: typeof import("projax-core").addProject, removeProject: typeof import("projax-core").removeProject, scanProject: typeof import("projax-core").scanProject, scanAllProjects: typeof import("projax-core").scanAllProjects;
|
|
1
|
+
export declare const getDatabaseManager: typeof import("projax-core").getDatabaseManager, getAllProjects: typeof import("projax-core").getAllProjects, addProject: typeof import("projax-core").addProject, removeProject: typeof import("projax-core").removeProject, scanProject: typeof import("projax-core").scanProject, scanAllProjects: typeof import("projax-core").scanAllProjects, getCurrentBranch: typeof import("projax-core").getCurrentBranch;
|
|
2
2
|
export type { Project, Test, ProjectPort } from 'projax-core';
|
package/dist/core-bridge.js
CHANGED
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.scanAllProjects = exports.scanProject = exports.removeProject = exports.addProject = exports.getAllProjects = exports.getDatabaseManager = void 0;
|
|
36
|
+
exports.getCurrentBranch = exports.scanAllProjects = exports.scanProject = exports.removeProject = exports.addProject = exports.getAllProjects = exports.getDatabaseManager = void 0;
|
|
37
37
|
const path = __importStar(require("path"));
|
|
38
38
|
let cachedCore = null;
|
|
39
39
|
function tryRequire(candidate) {
|
|
@@ -77,4 +77,4 @@ function loadCore() {
|
|
|
77
77
|
throw new Error(`Unable to load projax core module. Tried locations: ${candidates.join(', ')}`);
|
|
78
78
|
}
|
|
79
79
|
const core = loadCore();
|
|
80
|
-
exports.getDatabaseManager = core.getDatabaseManager, exports.getAllProjects = core.getAllProjects, exports.addProject = core.addProject, exports.removeProject = core.removeProject, exports.scanProject = core.scanProject, exports.scanAllProjects = core.scanAllProjects;
|
|
80
|
+
exports.getDatabaseManager = core.getDatabaseManager, exports.getAllProjects = core.getAllProjects, exports.addProject = core.addProject, exports.removeProject = core.removeProject, exports.scanProject = core.scanProject, exports.scanAllProjects = core.scanAllProjects, exports.getCurrentBranch = core.getCurrentBranch;
|
package/dist/index.js
CHANGED
|
@@ -709,7 +709,7 @@ program
|
|
|
709
709
|
// Table format
|
|
710
710
|
console.log(`\nTracked Projects (${projects.length}):\n`);
|
|
711
711
|
// Fetch git branches for all projects
|
|
712
|
-
const { getCurrentBranch } = await Promise.resolve().then(() => __importStar(require('
|
|
712
|
+
const { getCurrentBranch } = await Promise.resolve().then(() => __importStar(require('./core-bridge')));
|
|
713
713
|
const branchMap = new Map();
|
|
714
714
|
for (const project of projects) {
|
|
715
715
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projax",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.55",
|
|
4
4
|
"description": "Cross-platform project management dashboard for tracking local development projects. Features CLI, Terminal UI, Desktop app, REST API, and built-in tools for test detection, port management, and script execution.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"prepublishOnly": "pnpm run build:all"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"projax-core": "workspace:*",
|
|
28
27
|
"chokidar": "^3.6.0",
|
|
29
28
|
"commander": "^11.1.0",
|
|
30
29
|
"cors": "^2.8.5",
|