@aircall/tracker
Advanced tools
Comparing version 2.3.3 to 2.3.4
@@ -6,2 +6,15 @@ # Change Log | ||
## [2.3.4](https://github.com/aircall/front-end-core/compare/@aircall/tracker@2.3.3...@aircall/tracker@2.3.4) (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)) | ||
* **tracker:** add start script ([640f5a7](https://github.com/aircall/front-end-core/commit/640f5a7e40368e6c48643c5fd46a6186c95e8f7b)) | ||
## [2.3.3](https://github.com/aircall/front-end-core/compare/@aircall/tracker@2.3.2...@aircall/tracker@2.3.3) (2020-03-18) | ||
@@ -8,0 +21,0 @@ |
{ | ||
"name": "@aircall/tracker", | ||
"version": "2.3.3", | ||
"version": "2.3.4", | ||
"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", | ||
"devDependencies": { | ||
@@ -15,0 +18,0 @@ "@types/segment-analytics": "^0.0.32" |
@@ -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"] | ||
} | ||
19422
444