This commit is contained in:
Killer Boss Original 2022-12-29 13:39:58 +00:00
parent a356cb100a
commit 068dfed157
4 changed files with 20 additions and 17 deletions

View file

@ -13,7 +13,7 @@ jobs:
with: with:
node-version: '16.x' node-version: '16.x'
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
scope: '@fiusdevelopment' scope: '@thundernetworkrad'
- name: Install dependencies 🔧 - name: Install dependencies 🔧
run: npm ci run: npm ci
- name: Publish package on NPM 📦 - name: Publish package on NPM 📦
@ -33,7 +33,7 @@ jobs:
with: with:
node-version: '16.x' node-version: '16.x'
registry-url: 'https://npm.pkg.github.com' registry-url: 'https://npm.pkg.github.com'
scope: '@fiusdevelopment' scope: '@thundernetworkrad'
- name: Install dependencies 🔧 - name: Install dependencies 🔧
run: npm ci run: npm ci
- name: Publish package on NPM 📦 - name: Publish package on NPM 📦
@ -41,4 +41,4 @@ jobs:
env: env:
NODE_AUTH_TOKEN: ${{ secrets.GP_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.GP_TOKEN }}
REGISTRY1: 'npm.pkg.github.com' REGISTRY1: 'npm.pkg.github.com'
REGISTRY2: '@fiusdevelopment:registry=https://npm.pkg.github.com' REGISTRY2: '@thundernetworkrad:registry=https://npm.pkg.github.com'

View file

@ -1,6 +1,6 @@
const { writeFile, readFile, mkdir } = require('node:fs/promises'); const { writeFile, readFile, mkdir } = require('node:fs/promises');
const { stdin, stdout } = require('node:process'); const { stdin, stdout } = require('node:process');
var readlineSync = require('@fiusdevelopment/readline'); var readlineSync = require('readline-sync');
var name; var name;
function getTime () { function getTime () {

21
package-lock.json generated
View file

@ -9,20 +9,23 @@
"version": "0.0.5", "version": "0.0.5",
"license": "SEE LICENSE IN LICENSE.txt", "license": "SEE LICENSE IN LICENSE.txt",
"dependencies": { "dependencies": {
"@fiusdevelopment/readline": "^0.0.2" "readline-sync": "^1.4.10"
} }
}, },
"node_modules/@fiusdevelopment/readline": { "node_modules/readline-sync": {
"version": "0.0.2", "version": "1.4.10",
"resolved": "https://registry.npmjs.org/@fiusdevelopment/readline/-/readline-0.0.2.tgz", "resolved": "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz",
"integrity": "sha512-BYGUnOZQ2bTv4D3BDdsqM74Mck8iDwBAS18Oo/gB+8PX241xi4GYGE4JoKF6+MLQuFJ92+ohaUY0PBPmIxn0kQ==" "integrity": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==",
"engines": {
"node": ">= 0.8.0"
}
} }
}, },
"dependencies": { "dependencies": {
"@fiusdevelopment/readline": { "readline-sync": {
"version": "0.0.2", "version": "1.4.10",
"resolved": "https://registry.npmjs.org/@fiusdevelopment/readline/-/readline-0.0.2.tgz", "resolved": "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz",
"integrity": "sha512-BYGUnOZQ2bTv4D3BDdsqM74Mck8iDwBAS18Oo/gB+8PX241xi4GYGE4JoKF6+MLQuFJ92+ohaUY0PBPmIxn0kQ==" "integrity": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw=="
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "@fiusdevelopment/std", "name": "@thundernetworkrad/std",
"version": "0.0.5", "version": "2022.12.29",
"description": "Standard module for javascript", "description": "Standard module for javascript",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -18,13 +18,13 @@
"module", "module",
"javascript" "javascript"
], ],
"author": "FIUS Development | Killer Boss Original - EnyGasELuce", "author": "Thunder Network RaD | Killer Boss Original",
"license": "SEE LICENSE IN LICENSE.txt", "license": "SEE LICENSE IN LICENSE.txt",
"bugs": { "bugs": {
"url": "https://github.com/FIUSDevelopment/std/issues" "url": "https://github.com/FIUSDevelopment/std/issues"
}, },
"homepage": "https://github.com/FIUSDevelopment/std#readme", "homepage": "https://github.com/FIUSDevelopment/std#readme",
"dependencies": { "dependencies": {
"@fiusdevelopment/readline": "^0.0.2" "readline-sync": "^1.4.10"
} }
} }