testeranto 0.79.62 → 0.79.64

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/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.62",
4
+ "version": "0.79.64",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },
@@ -22,7 +22,7 @@ import { IBaseConfig } from "./lib/types";
22
22
 
23
23
  console.log("hello TaskMan Backend", process.env);
24
24
 
25
- const port = 3000;
25
+ const port = process.env.HTTPS_PORT || "3000";
26
26
 
27
27
  function findTextFiles(dir: string, fileList: string[] = []) {
28
28
  const files = fs.readdirSync(dir);