Compare commits
4 commits
v2023.02.0
...
main
Author | SHA1 | Date | |
---|---|---|---|
ed15488b60 | |||
557786d2bb | |||
3dc6fbb535 | |||
|
9bd0befd5d |
3 changed files with 12 additions and 4 deletions
6
.github/workflows/npm-publish.yml
vendored
6
.github/workflows/npm-publish.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
|||
types: [created]
|
||||
jobs:
|
||||
Publish-NPM:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: node1
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -14,6 +14,10 @@ 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:
|
||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -103,3 +103,7 @@ dist
|
|||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
|
||||
# build
|
||||
build
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"name": "node-cin",
|
||||
"version": "2023.02.03",
|
||||
"version": "2023.02.05",
|
||||
"description": "Standard input module for JavaScript / TypeScript",
|
||||
"main": "build/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"types": "build/index.d.ts",
|
||||
"scripts": {
|
||||
"install": "tsc"
|
||||
"build": "tsc"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
Loading…
Reference in a new issue