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'
registry-url: 'https://registry.npmjs.org'
scope: '@thundernetworkrad'
- name: Install Dependency
run: npm i
- name: Build
run: npm run build
- name: Publish package on NPM 📦
run: npm publish --access public
env:

1
.gitignore vendored
View file

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

View file

@ -1,11 +1,11 @@
{
"name": "mit.db",
"version": "2023.02.05-1",
"version": "2023.02.05-2",
"description": "An easy and quick database",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"install": "tsc"
"build": "tsc"
},
"repository": {
"type": "git",
@ -18,8 +18,10 @@
},
"homepage": "https://github.com/ThunderNetworkRaD/map.db#readme",
"dependencies": {
"@types/node": "^18.11.18",
"tslib": "^2.4.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^18.11.19"
}
}

View file

@ -26,7 +26,7 @@
/* Modules */
"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. */
// "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. */

1
tsconfig.tsbuildinfo Normal file

File diff suppressed because one or more lines are too long