@apigames/logger
Advanced tools
Comparing version 1.0.11 to 1.0.12
import { ILogger } from '../interfaces/logger'; | ||
declare const ConsoleLogger: ILogger; | ||
export default ConsoleLogger; |
@@ -0,0 +0,0 @@ "use strict"; |
export { default as ConsoleLogger } from './console.logger'; |
@@ -0,0 +0,0 @@ "use strict"; |
export { LoggerMessageType, LoggerPayload, ILogger } from './interfaces/logger'; | ||
export { ConsoleLogger } from './implementations'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export declare enum LoggerMessageType { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -6,8 +6,10 @@ { | ||
"license": "UNLICENSED", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
"ms:build": "rmdir /s /q lib & tsc & jest --config build.jest.config.js", | ||
"mac:build": "rm -rf lib;tsc;jest --config build.jest.config.js", | ||
"win:build": "(if exist lib rmdir /s /q lib) && tsc && jest && jest --config build.jest.config.js --coverage", | ||
"unx:build": "rm -rf lib && tsc && jest && jest --config build.jest.config.js --coverage", | ||
"win:publish": "(if exist lib rmdir /s /q lib) && tsc && jest && jest --config build.jest.config.js && npm publish", | ||
"unx:publish": "rm -rf lib && tsc && jest && jest --config build.jest.config.js && npm publish", | ||
"test:coverage": "jest --coverage", | ||
@@ -17,10 +19,10 @@ "test:watch": "jest --watch" | ||
"dependencies": { | ||
"@apigames/json": "^1.0.35" | ||
"@apigames/json": "^1.0.37" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^26.0.15", | ||
"@types/node": "^14.14.10", | ||
"@types/jest": "^26.0.19", | ||
"@types/node": "^14.14.14", | ||
"@typescript-eslint/eslint-plugin": "^3.10.1", | ||
"@typescript-eslint/parser": "^3.10.1", | ||
"eslint": "^7.14.0", | ||
"eslint": "^7.15.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
@@ -30,5 +32,6 @@ "eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-react": "^7.21.5", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"jest": "^26.6.3", | ||
"ts-jest": "^26.4.4", | ||
"typescript": "^4.1.2" | ||
"typescript": "^4.1.3" | ||
}, | ||
@@ -35,0 +38,0 @@ "eslintConfig": {}, |
@@ -23,2 +23,2 @@ API Games Logger | ||
Copyright (c) 2020 API Games Limited. All rights reserved. | ||
Copyright (c) 2021 API Games Limited. All rights reserved. |
Sorry, the diff of this file is not supported yet
5651
13
Updated@apigames/json@^1.0.37