testeranto 0.79.46 → 0.79.48

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/Report.Dockerfile CHANGED
@@ -19,6 +19,7 @@ COPY ./subPackages/ /usr/src/app/subPackages
19
19
  COPY ./testeranto.mts /usr/src/app/testeranto.mts
20
20
  COPY ./tsconfig.json /usr/src/app/tsconfig.json
21
21
  COPY ./init.mts /usr/src/app/init.mts
22
+ COPY ./report.mts /usr/src/app/report.mts
22
23
  RUN yarn run init
23
24
  RUN yarn report
24
25
  # COPY ./docs/ /usr/src/app/docs
@@ -58,6 +58,7 @@ var RoomSchema = new mongoose.Schema({
58
58
  });
59
59
 
60
60
  // src/TaskManBackEnd.ts
61
+ console.log("hello TaskMan Backend", process.env);
61
62
  var port = 3e3;
62
63
  function findTextFiles(dir, fileList = []) {
63
64
  const files = fs.readdirSync(dir);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.46",
4
+ "version": "0.79.48",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },
@@ -17,19 +17,10 @@ import {
17
17
  channelsFeature,
18
18
  chatCatMessageSchema,
19
19
  } from "./mongooseSchemas";
20
- import { ITProject } from "./Project";
20
+
21
21
  import { IBaseConfig } from "./lib/types";
22
22
 
23
- // export const chatChannel = new mongoose.Schema<IChatChannel>({
24
- // // name: { type: String, required: true },
25
- // users: [
26
- // {
27
- // type: mongoose.Schema.Types.ObjectId,
28
- // ref: "User",
29
- // required: true,
30
- // },
31
- // ],
32
- // });
23
+ console.log("hello TaskMan Backend", process.env);
33
24
 
34
25
  const port = 3000;
35
26