Compare commits

..

4 commits

Author SHA1 Message Date
ed15488b60 2023.02.05 2023-02-05 13:33:16 +01:00
557786d2bb 2023.02.03-2 2023-02-05 13:30:54 +01:00
3dc6fbb535 . 2023-02-05 13:06:01 +01:00
Killer Boss Original
9bd0befd5d fix 2023-02-03 18:56:15 +01:00
3 changed files with 12 additions and 4 deletions

View file

@ -4,7 +4,7 @@ on:
types: [created] types: [created]
jobs: jobs:
Publish-NPM: Publish-NPM:
runs-on: ubuntu-latest runs-on: node1
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -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:

4
.gitignore vendored
View file

@ -103,3 +103,7 @@ dist
# TernJS port file # TernJS port file
.tern-port .tern-port
# build
build

View file

@ -1,11 +1,11 @@
{ {
"name": "node-cin", "name": "node-cin",
"version": "2023.02.03", "version": "2023.02.05",
"description": "Standard input module for JavaScript / TypeScript", "description": "Standard input module for JavaScript / TypeScript",
"main": "build/index.js", "main": "build/index.js",
"types": "dist/index.d.ts", "types": "build/index.d.ts",
"scripts": { "scripts": {
"install": "tsc" "build": "tsc"
}, },
"repository": { "repository": {
"type": "git", "type": "git",