cmp-lite 1.0.0 → 1.0.1
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/app.js +1 -1
- package/package.json +36 -36
package/dist/app.js
CHANGED
|
@@ -173,7 +173,7 @@ const app = async () => {
|
|
|
173
173
|
const appPath = __dirname;
|
|
174
174
|
const rootPath = currentDir;
|
|
175
175
|
const pipelinePath = path_1.default.resolve(appPath, "../");
|
|
176
|
-
const gatewayPath = path_1.default.join(
|
|
176
|
+
const gatewayPath = path_1.default.join(currentDir, "gateway");
|
|
177
177
|
const servicePath = path_1.default.join(rootPath, serviceName);
|
|
178
178
|
const srcPath = path_1.default.join(servicePath, "src");
|
|
179
179
|
const appFilePath = path_1.default.join(srcPath, "app.ts");
|
package/package.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "cmp-lite",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "dist/app.js",
|
|
6
|
-
"types": "dist/app.d.ts",
|
|
7
|
-
"bin": {
|
|
8
|
-
"cmp-lite": "dist/app.js"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"dev": "ts-node-dev --transpile-only src/app.ts",
|
|
12
|
-
"build": "tsc",
|
|
13
|
-
"start": "node dist/app.js"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [],
|
|
16
|
-
"author": "",
|
|
17
|
-
"license": "ISC",
|
|
18
|
-
"type": "commonjs",
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"chalk": "^5.6.2",
|
|
21
|
-
"cors": "^2.8.6",
|
|
22
|
-
"dotenv": "^17.2.3",
|
|
23
|
-
"express": "^5.2.1",
|
|
24
|
-
"inquirer": "^13.2.2",
|
|
25
|
-
"mongoose": "^9.1.5",
|
|
26
|
-
"morgan": "^1.10.1"
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@types/cors": "^2.8.19",
|
|
30
|
-
"@types/express": "^5.0.6",
|
|
31
|
-
"@types/morgan": "^1.9.10",
|
|
32
|
-
"@types/node": "^25.1.0",
|
|
33
|
-
"ts-node-dev": "^2.0.0",
|
|
34
|
-
"typescript": "^5.9.3"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "cmp-lite",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/app.js",
|
|
6
|
+
"types": "dist/app.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"cmp-lite": "dist/app.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "ts-node-dev --transpile-only src/app.ts",
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"start": "node dist/app.js"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [],
|
|
16
|
+
"author": "",
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"type": "commonjs",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"chalk": "^5.6.2",
|
|
21
|
+
"cors": "^2.8.6",
|
|
22
|
+
"dotenv": "^17.2.3",
|
|
23
|
+
"express": "^5.2.1",
|
|
24
|
+
"inquirer": "^13.2.2",
|
|
25
|
+
"mongoose": "^9.1.5",
|
|
26
|
+
"morgan": "^1.10.1"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/cors": "^2.8.19",
|
|
30
|
+
"@types/express": "^5.0.6",
|
|
31
|
+
"@types/morgan": "^1.9.10",
|
|
32
|
+
"@types/node": "^25.1.0",
|
|
33
|
+
"ts-node-dev": "^2.0.0",
|
|
34
|
+
"typescript": "^5.9.3"
|
|
35
|
+
}
|
|
36
|
+
}
|