1
0
mirror of https://git.stamm.me/OpenServer/NodeLogging.git synced 2024-11-14 23:01:04 +00:00

Update LoggingBase name

This commit is contained in:
Fabian Stamm 2021-05-08 22:18:51 +02:00
parent 249f701cb7
commit c58d75129d
4 changed files with 14 additions and 14 deletions

18
package-lock.json generated
View File

@ -1,15 +1,15 @@
{ {
"name": "@hibas123/nodelogging", "name": "@hibas123/nodelogging",
"version": "2.4.4", "version": "3.0.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@hibas123/nodelogging", "name": "@hibas123/nodelogging",
"version": "2.4.4", "version": "3.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@hibas123/logging": "^3.0.0", "@hibas123/logging": "^3.0.3",
"@hibas123/utils": "^2.2.18" "@hibas123/utils": "^2.2.18"
}, },
"devDependencies": { "devDependencies": {
@ -107,9 +107,9 @@
} }
}, },
"node_modules/@hibas123/logging": { "node_modules/@hibas123/logging": {
"version": "3.0.0", "version": "3.0.3",
"resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.0.tgz", "resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.3.tgz",
"integrity": "sha512-wvi+rpoSMMDD4whCKro2nof5ZU1wHavKXGCTM8vNcx2wIwnqgOjN9DAHAhscZak8BhpU5uAGk+pIFTd778jdjA==", "integrity": "sha512-lFAQZ4N2fg/SMjcEcbcKqmkGuOgrTn+qVYvd2UEUoS28niDcvSzKdh6MpHfg7Ier0PhdPPHESTh7SSR+hRZEiw==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/@hibas123/utils": { "node_modules/@hibas123/utils": {
@ -2179,9 +2179,9 @@
} }
}, },
"@hibas123/logging": { "@hibas123/logging": {
"version": "3.0.0", "version": "3.0.3",
"resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.0.tgz", "resolved": "https://npm.hibas123.de/@hibas123%2flogging/-/logging-3.0.3.tgz",
"integrity": "sha512-wvi+rpoSMMDD4whCKro2nof5ZU1wHavKXGCTM8vNcx2wIwnqgOjN9DAHAhscZak8BhpU5uAGk+pIFTd778jdjA==" "integrity": "sha512-lFAQZ4N2fg/SMjcEcbcKqmkGuOgrTn+qVYvd2UEUoS28niDcvSzKdh6MpHfg7Ier0PhdPPHESTh7SSR+hRZEiw=="
}, },
"@hibas123/utils": { "@hibas123/utils": {
"version": "2.2.18", "version": "2.2.18",

View File

@ -1,11 +1,11 @@
{ {
"name": "@hibas123/nodelogging", "name": "@hibas123/nodelogging",
"version": "3.0.0", "version": "3.0.4",
"description": "", "description": "",
"main": "out/index.js", "main": "out/index.js",
"types": "out/index.d.ts", "types": "out/index.d.ts",
"scripts": { "scripts": {
"prepublish": "tsc", "prepublish": "npm run build",
"build": "tsc", "build": "tsc",
"watch-ts": "tsc --watch", "watch-ts": "tsc --watch",
"watch-js": "nodemon out/test.js", "watch-js": "nodemon out/test.js",
@ -32,7 +32,7 @@
"typescript": "^4.2.4" "typescript": "^4.2.4"
}, },
"dependencies": { "dependencies": {
"@hibas123/logging": "^3.0.0", "@hibas123/logging": "^3.0.3",
"@hibas123/utils": "^2.2.18" "@hibas123/utils": "^2.2.18"
} }
} }

View File

@ -1,6 +1,6 @@
export { LoggingFiles } from "./filewriter"; export { LoggingFiles } from "./filewriter";
import { LoggingFiles } from "./filewriter"; import { LoggingFiles } from "./filewriter";
import { Logging as LoggingBase } from "@hibas123/logging"; import { LoggingBase } from "@hibas123/logging";
import Logging from "@hibas123/logging"; import Logging from "@hibas123/logging";
LoggingBase.nativeFunctions = { LoggingBase.nativeFunctions = {

View File

@ -1,6 +1,6 @@
import { randomBytes } from "crypto"; import { randomBytes } from "crypto";
import * as fs from "fs"; import * as fs from "fs";
import { Logging as LoggingBase } from "@hibas123/logging"; import { LoggingBase } from "@hibas123/logging";
import Logging, { DefaultLoggingFile } from "."; import Logging, { DefaultLoggingFile } from ".";
const deleteFolderRecursive = function (path: string) { const deleteFolderRecursive = function (path: string) {