2023.02.05-1
This commit is contained in:
parent
e323c1a6ea
commit
ae9ef7bf08
2 changed files with 11 additions and 3 deletions
8
.github/workflows/npm-publish.yml
vendored
8
.github/workflows/npm-publish.yml
vendored
|
@ -14,6 +14,10 @@ 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:
|
||||||
|
@ -32,6 +36,10 @@ 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:
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@thundernetworkrad/logs",
|
"name": "@thundernetworkrad/logs",
|
||||||
"version": "2023.02.05",
|
"version": "2023.02.05-1",
|
||||||
"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": {
|
||||||
"install": "tsc"
|
"build": "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",
|
"@thundernetworkrad/time": "^2023.2.5-2",
|
||||||
"@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"
|
||||||
|
|
Loading…
Reference in a new issue