@aircall/logger
Advanced tools
Comparing version 2.2.4 to 2.3.0
@@ -6,2 +6,19 @@ # Change Log | ||
# [2.3.0](https://github.com/aircall/front-end-core/compare/@aircall/logger@2.2.4...@aircall/logger@2.3.0) (2020-03-25) | ||
### Bug Fixes | ||
* correctly resolve sibling dependencies ([6ac1170](https://github.com/aircall/front-end-core/commit/6ac1170ec853d99b7952854155eda09c4a2bc7be)) | ||
* fix packages build ([bc95add](https://github.com/aircall/front-end-core/commit/bc95add1b4bf6574ccf3bcb82754ce34a378f35d)) | ||
### Features | ||
* **http:** initialize http module package and add start script ([fd93315](https://github.com/aircall/front-end-core/commit/fd933154f7b288d221d8531bd2849735e525b2df)) | ||
## [2.2.4](https://github.com/aircall/front-end-core/compare/@aircall/logger@2.2.3...@aircall/logger@2.2.4) (2020-03-18) | ||
@@ -8,0 +25,0 @@ |
{ | ||
"name": "@aircall/logger", | ||
"version": "2.2.4", | ||
"version": "2.3.0", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"postversion": "rm -rf dist && tsc" | ||
"start": "tsc -w", | ||
"clean": "rm -rf dist", | ||
"build": "tsc", | ||
"postversion": "yarn clean && yarn build" | ||
}, | ||
@@ -12,3 +15,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "12aa4206b6af59792768ab579e2cecab00f36a4a", | ||
"gitHead": "c0ca79436133a5ac8d3ef37423bf742bcf9c328c", | ||
"dependencies": { | ||
@@ -15,0 +18,0 @@ "@datadog/browser-logs": "1.7.3", |
@@ -6,11 +6,9 @@ { | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
"rootDir": "./src", | ||
"paths": { | ||
"@aircall/*": ["../../node_modules/@aircall/*/src"] | ||
} | ||
}, | ||
"include": [ | ||
"**/*.ts" | ||
], | ||
"exclude": [ | ||
"**/*.spec.ts" | ||
] | ||
"include": ["**/*.ts"], | ||
"exclude": ["node_modules", "dist", "**/*.spec.ts"] | ||
} | ||
26837
559