cmp-services 1.0.4 → 1.0.5
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 +1 -1
package/dist/app.js
CHANGED
|
@@ -128,7 +128,7 @@ const app = async () => {
|
|
|
128
128
|
exitApp("Pipeline name not allowed");
|
|
129
129
|
const serviceName = validateService(service);
|
|
130
130
|
const appPath = __dirname;
|
|
131
|
-
const currentDir = process.cwd();
|
|
131
|
+
const currentDir = path_1.default.join(process.cwd(), "services");
|
|
132
132
|
const rootPath = currentDir;
|
|
133
133
|
const pipelinePath = path_1.default.resolve(appPath, "../");
|
|
134
134
|
const gatewayPath = path_1.default.join(currentDir, "gateway");
|