testeranto 0.79.59 → 0.79.61

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.
@@ -9,6 +9,7 @@ const childProcesses = {};
9
9
  readline.emitKeypressEvents(process.stdin);
10
10
  if (process.stdin.isTTY)
11
11
  process.stdin.setRawMode(true);
12
+ console.log("hello Puppeteer", process.env);
12
13
  console.log("\n Puppeteer is running. Press 'q' to quit\n");
13
14
  process.stdin.on("keypress", (str, key) => {
14
15
  if (key.name === "q") {
@@ -21,7 +22,7 @@ export default async (partialConfig) => {
21
22
  const pm = new PM_Main(config);
22
23
  await pm.startPuppeteer({
23
24
  waitForInitialPage: false,
24
- executablePath: "/opt/homebrew/bin/chromium",
25
+ executablePath: process.env.CHROMIUM_PATH || "/opt/homebrew/bin/chromium",
25
26
  headless: true,
26
27
  // dumpio: true,
27
28
  args: [
@@ -4,16 +4,7 @@ import mongoose from "mongoose";
4
4
  import path from "path";
5
5
  import fs from "fs";
6
6
  import { ganttSchema, kanbanSchema, userSchema, featuresSchema, RoomSchema, HuddleSchema, channelsFeature, chatCatMessageSchema, } from "./mongooseSchemas";
7
- // export const chatChannel = new mongoose.Schema<IChatChannel>({
8
- // // name: { type: String, required: true },
9
- // users: [
10
- // {
11
- // type: mongoose.Schema.Types.ObjectId,
12
- // ref: "User",
13
- // required: true,
14
- // },
15
- // ],
16
- // });
7
+ console.log("hello TaskMan Backend", process.env);
17
8
  const port = 3000;
18
9
  function findTextFiles(dir, fileList = []) {
19
10
  const files = fs.readdirSync(dir);