testeranto 0.79.4 → 0.79.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.
@@ -11,7 +11,7 @@ COPY ./src/ /usr/src/app/src
11
11
  # RUN yarn build
12
12
 
13
13
  RUN cp ./node_modules/testeranto/dist/prebuild/TaskManBackEnd.mjs /usr/src/app/TaskManBackEnd.mjs
14
- RUN cp ./node_modules/testeranto/dist/prebuild/TaskManFrontEnd.js /usr/src/app/TaskManFrontEnd.mjs
14
+ RUN cp ./node_modules/testeranto/dist/prebuild/TaskManFrontEnd.js /usr/src/app/TaskManFrontEnd.js
15
15
  RUN cp ./node_modules/testeranto/dist/prebuild/TaskManFrontEnd.css /usr/src/app/TaskManFrontEnd.css
16
16
 
17
17
  # RUN ts-node-esm ./node_modules/testeranto/dist/prebuild/TaskManBackEnd.mjs
@@ -76,10 +76,10 @@ new mongodb_1.MongoClient(`mongodb://${process.env.MONGO_HOST || "127.0.0.1"}:27
76
76
  const huddleModdle = ChatChannel.discriminator("Huddle", mongooseSchemas_1.HuddleSchema);
77
77
  const roomsModel = ChatChannel.discriminator("Room", mongooseSchemas_1.RoomSchema);
78
78
  app.get("/TaskManFrontend.js", (req, res) => {
79
- res.sendFile(`${process.cwd()}/dist/prebuild/TaskManFrontEnd.js`);
79
+ res.sendFile(`${process.cwd()}/TaskManFrontEnd.js`);
80
80
  });
81
81
  app.get("/TaskManFrontEnd.css", (req, res) => {
82
- res.sendFile(`${process.cwd()}/dist/prebuild/TaskManFrontEnd.css`);
82
+ res.sendFile(`${process.cwd()}/TaskManFrontEnd.css`);
83
83
  });
84
84
  // app.get(`/preMergeCheck`, async (req, res) => {
85
85
  // const commit = req.params["commit"];