2023.02.05-2

This commit is contained in:
KillerBossOriginal 2023-02-05 13:17:25 +01:00
parent 306b94feb5
commit 356cd177ec
5 changed files with 13 additions and 5 deletions

View file

@ -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 Dependency
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:

3
.gitignore vendored
View file

@ -1,2 +1,3 @@
node_modules node_modules
package-lock.json package-lock.json
build

View file

@ -1,11 +1,11 @@
{ {
"name": "mit.db", "name": "mit.db",
"version": "2023.02.05-1", "version": "2023.02.05-2",
"description": "An easy and quick database", "description": "An easy and quick database",
"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,8 +18,10 @@
}, },
"homepage": "https://github.com/ThunderNetworkRaD/map.db#readme", "homepage": "https://github.com/ThunderNetworkRaD/map.db#readme",
"dependencies": { "dependencies": {
"@types/node": "^18.11.18",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"typescript": "^4.9.5" "typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^18.11.19"
} }
} }

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. */

1
tsconfig.tsbuildinfo Normal file

File diff suppressed because one or more lines are too long