Compare commits
No commits in common. "85d4ed20a45ff63198e47c4b8b7347b05aa9fbf2" and "b9df7eec731f67f46b55c0e5140f04bbc5699ec9" have entirely different histories.
85d4ed20a4
...
b9df7eec73
5 changed files with 2372 additions and 34 deletions
33
.github/workflows/node.js.yml
vendored
Normal file
33
.github/workflows/node.js.yml
vendored
Normal 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
|
3
index.ts
3
index.ts
|
@ -38,14 +38,13 @@ function getTime() : string {
|
||||||
}
|
}
|
||||||
|
|
||||||
let queuedForLog = "";
|
let queuedForLog = "";
|
||||||
const LOG_FILE_REGEX = /\x1B\[(\d.m|.m)/gm;
|
|
||||||
|
|
||||||
function log(tag:LogTag, log:string, logType:LogType) : void {
|
function log(tag:LogTag, log:string, logType:LogType) : void {
|
||||||
const stringTime = getTime(),
|
const stringTime = getTime(),
|
||||||
fileTag = TagsForFile[tag],
|
fileTag = TagsForFile[tag],
|
||||||
consoleTag = LogTags[tag];
|
consoleTag = LogTags[tag];
|
||||||
|
|
||||||
queuedForLog += `${stringTime} ${fileTag} ${log.replace(LOG_FILE_REGEX, "")}\n`;
|
queuedForLog += `${stringTime} ${fileTag} ${log}\n`;
|
||||||
switch (logType) {
|
switch (logType) {
|
||||||
case LogType.INFO:
|
case LogType.INFO:
|
||||||
return console.log(`${dyetty.green(stringTime)} ${consoleTag} ${log}`);
|
return console.log(`${dyetty.green(stringTime)} ${consoleTag} ${log}`);
|
||||||
|
|
2354
package-lock.json
generated
2354
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hsconsole",
|
"name": "hsconsole",
|
||||||
"version": "1.1.0",
|
"version": "1.0.2",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"types": "./lib/index.d.ts",
|
"types": "./lib/index.d.ts",
|
||||||
|
@ -16,9 +16,10 @@
|
||||||
"dyetty": "^1.0.1"
|
"dyetty": "^1.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^22.10.4",
|
"@types/node": "^20.5.0",
|
||||||
"check-outdated": "^2.12.0",
|
"check-outdated": "^2.12.0",
|
||||||
"ts-node": "^10.9.2",
|
"ts-loader": "^9.4.4",
|
||||||
"typescript": "^5.7.2"
|
"ts-node": "^10.9.1",
|
||||||
|
"typescript": "^5.1.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,12 +2,15 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "CommonJS",
|
"module": "CommonJS",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"target": "ES2022",
|
"target": "es6",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"rootDir": "./",
|
"rootDir": "./",
|
||||||
"outDir": "./lib/",
|
"outDir": "./lib/",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"lib": [
|
||||||
|
"ES2021.String"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue