2023.02.05-2
This commit is contained in:
parent
306b94feb5
commit
356cd177ec
5 changed files with 13 additions and 5 deletions
4
.github/workflows/npm-publish.yml
vendored
4
.github/workflows/npm-publish.yml
vendored
|
@ -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:
|
||||
|
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
node_modules
|
||||
package-lock.json
|
||||
package-lock.json
|
||||
build
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
1
tsconfig.tsbuildinfo
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue