Compare commits

..

No commits in common. "85d4ed20a45ff63198e47c4b8b7347b05aa9fbf2" and "b9df7eec731f67f46b55c0e5140f04bbc5699ec9" have entirely different histories.

5 changed files with 2372 additions and 34 deletions

33
.github/workflows/node.js.yml vendored Normal file
View file

@ -0,0 +1,33 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
# Don't run updateCheck for now
#- run: npm run dev:updateCheck
- run: npm run build
#- run: npm test

View file

@ -38,14 +38,13 @@ function getTime() : string {
}
let queuedForLog = "";
const LOG_FILE_REGEX = /\x1B\[(\d.m|.m)/gm;
function log(tag:LogTag, log:string, logType:LogType) : void {
const stringTime = getTime(),
fileTag = TagsForFile[tag],
consoleTag = LogTags[tag];
queuedForLog += `${stringTime} ${fileTag} ${log.replace(LOG_FILE_REGEX, "")}\n`;
queuedForLog += `${stringTime} ${fileTag} ${log}\n`;
switch (logType) {
case LogType.INFO:
return console.log(`${dyetty.green(stringTime)} ${consoleTag} ${log}`);

2354
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "hsconsole",
"version": "1.1.0",
"version": "1.0.2",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
@ -16,9 +16,10 @@
"dyetty": "^1.0.1"
},
"devDependencies": {
"@types/node": "^22.10.4",
"@types/node": "^20.5.0",
"check-outdated": "^2.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}

View file

@ -2,12 +2,15 @@
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"target": "ES2022",
"target": "es6",
"esModuleInterop": true,
"resolveJsonModule": true,
"rootDir": "./",
"outDir": "./lib/",
"strict": true,
"declaration": true
"declaration": true,
"lib": [
"ES2021.String"
]
}
}