Compare commits

..

No commits in common. "main" and "v2023.02.03" have entirely different histories.

4 changed files with 9 additions and 21 deletions

View file

@ -4,7 +4,7 @@ on:
types: [created]
jobs:
Publish-NPM:
runs-on: node1
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
@ -14,10 +14,6 @@ jobs:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@thundernetworkrad'
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Publish package on NPM 📦
run: npm publish --access public
env:
@ -26,7 +22,7 @@ jobs:
REGISTRY2: 'registry=https://registry.npmjs.org/'
Publish-GitHub-NPM:
runs-on: node1
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
@ -36,10 +32,6 @@ jobs:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@thundernetworkrad'
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Publish package on NPM 📦
run: npm publish --access public
env:

4
.gitignore vendored
View file

@ -102,7 +102,3 @@ dist
# TernJS port file
.tern-port
build
package-lock.json

View file

@ -1,11 +1,11 @@
{
"name": "@thundernetworkrad/logs",
"version": "2023.02.05-1",
"version": "2023.02.03",
"description": "Logging module for JavaScript / TypeScript",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc"
"install": "tsc"
},
"repository": {
"type": "git",
@ -18,9 +18,9 @@
},
"homepage": "https://github.com/ThunderNetworkRaD/node-logs#readme",
"dependencies": {
"@thundernetworkrad/time": "^2023.2.5-2",
"@types/node": "^18.11.18",
"@thundernetworkrad/readline-sync": "^2023.1.26-2",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
"typescript": "^4.9.4",
"@types/node": "^18.11.18"
}
}

View file

@ -26,7 +26,7 @@
/* Modules */
"module": "CommonJS", /* Specify what module code is generated. */
"rootDir": "src", /* Specify the root folder within your source files. */
"rootDir": "./", /* Specify the root folder within your source files. */
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
@ -102,4 +102,4 @@
},
// "include": [],
"exclude": ["node_modules", "logs", "build", "d", "test.js"]
}
}