micro-service-maker 1.0.9 → 1.1.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 +1 -1
package/dist/app.js
CHANGED
|
@@ -203,7 +203,7 @@ const app = async () => {
|
|
|
203
203
|
const pipeLinePath = path_1.default.resolve(appPath, "../");
|
|
204
204
|
const gatewayPath = path_1.default.join(currentDir, "gateway");
|
|
205
205
|
const rootPath = path_1.default.resolve(appPath, "../"); //path.resolve(appPath, "../../")
|
|
206
|
-
const servicePath = path_1.default.join(
|
|
206
|
+
const servicePath = path_1.default.join(currentDir, serviceName);
|
|
207
207
|
const srcPath = path_1.default.join(servicePath, "src");
|
|
208
208
|
const appFilePath = path_1.default.join(srcPath, "app.ts");
|
|
209
209
|
// files to copy from pipeline
|