Compare commits

..

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

3 changed files with 4 additions and 12 deletions

View file

@ -14,10 +14,6 @@ jobs:
node-version: '16.x' node-version: '16.x'
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
scope: '@thundernetworkrad' scope: '@thundernetworkrad'
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Publish package on NPM 📦 - name: Publish package on NPM 📦
run: npm publish --access public run: npm publish --access public
env: env:
@ -36,10 +32,6 @@ jobs:
node-version: '16.x' node-version: '16.x'
registry-url: 'https://npm.pkg.github.com' registry-url: 'https://npm.pkg.github.com'
scope: '@thundernetworkrad' scope: '@thundernetworkrad'
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Publish package on NPM 📦 - name: Publish package on NPM 📦
run: npm publish --access public run: npm publish --access public
env: env:

View file

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

View file

@ -26,7 +26,7 @@
/* Modules */ /* Modules */
"module": "CommonJS", /* Specify what module code is generated. */ "module": "CommonJS", /* Specify what module code is generated. */
"rootDir": "src", /* Specify the root folder within your source files. */ "rootDir": "./src/", /* Specify the root folder within your source files. */
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ "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. */ // "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. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */