mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-14 17:31:05 +00:00
Update LoggingBase name
This commit is contained in:
parent
249f701cb7
commit
c58d75129d
18
package-lock.json
generated
18
package-lock.json
generated
@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@hibas123/nodelogging",
|
||||
"version": "2.4.4",
|
||||
"version": "3.0.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@hibas123/nodelogging",
|
||||
"version": "2.4.4",
|
||||
"version": "3.0.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@hibas123/logging": "^3.0.0",
|
||||
"@hibas123/logging": "^3.0.3",
|
||||
"@hibas123/utils": "^2.2.18"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -107,9 +107,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@hibas123/logging": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.0.tgz",
|
||||
"integrity": "sha512-wvi+rpoSMMDD4whCKro2nof5ZU1wHavKXGCTM8vNcx2wIwnqgOjN9DAHAhscZak8BhpU5uAGk+pIFTd778jdjA==",
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.3.tgz",
|
||||
"integrity": "sha512-lFAQZ4N2fg/SMjcEcbcKqmkGuOgrTn+qVYvd2UEUoS28niDcvSzKdh6MpHfg7Ier0PhdPPHESTh7SSR+hRZEiw==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@hibas123/utils": {
|
||||
@ -2179,9 +2179,9 @@
|
||||
}
|
||||
},
|
||||
"@hibas123/logging": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.0.tgz",
|
||||
"integrity": "sha512-wvi+rpoSMMDD4whCKro2nof5ZU1wHavKXGCTM8vNcx2wIwnqgOjN9DAHAhscZak8BhpU5uAGk+pIFTd778jdjA=="
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.3.tgz",
|
||||
"integrity": "sha512-lFAQZ4N2fg/SMjcEcbcKqmkGuOgrTn+qVYvd2UEUoS28niDcvSzKdh6MpHfg7Ier0PhdPPHESTh7SSR+hRZEiw=="
|
||||
},
|
||||
"@hibas123/utils": {
|
||||
"version": "2.2.18",
|
||||
|
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "@hibas123/nodelogging",
|
||||
"version": "3.0.0",
|
||||
"version": "3.0.4",
|
||||
"description": "",
|
||||
"main": "out/index.js",
|
||||
"types": "out/index.d.ts",
|
||||
"scripts": {
|
||||
"prepublish": "tsc",
|
||||
"prepublish": "npm run build",
|
||||
"build": "tsc",
|
||||
"watch-ts": "tsc --watch",
|
||||
"watch-js": "nodemon out/test.js",
|
||||
@ -32,7 +32,7 @@
|
||||
"typescript": "^4.2.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hibas123/logging": "^3.0.0",
|
||||
"@hibas123/logging": "^3.0.3",
|
||||
"@hibas123/utils": "^2.2.18"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
export { LoggingFiles } from "./filewriter";
|
||||
import { LoggingFiles } from "./filewriter";
|
||||
import { Logging as LoggingBase } from "@hibas123/logging";
|
||||
import { LoggingBase } from "@hibas123/logging";
|
||||
import Logging from "@hibas123/logging";
|
||||
|
||||
LoggingBase.nativeFunctions = {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { randomBytes } from "crypto";
|
||||
import * as fs from "fs";
|
||||
import { Logging as LoggingBase } from "@hibas123/logging";
|
||||
import { LoggingBase } from "@hibas123/logging";
|
||||
import Logging, { DefaultLoggingFile } from ".";
|
||||
|
||||
const deleteFolderRecursive = function (path: string) {
|
||||
|
Loading…
Reference in New Issue
Block a user