Adjust European short trip heuristic from >3 days to >1 day to correctly detect when user has returned home from European trips. This fixes the April 29-30, 2023 case where the location incorrectly showed "Sankt Georg, Hamburg" instead of "Bristol" when the user was free (no events scheduled) after the foss-north trip ended on April 27. The previous logic required more than 3 days to pass before assuming return home from European countries, but for short European trips by rail/ferry, users typically return within 1-2 days. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
{
|
|
"name": "webpack-merge",
|
|
"description": "Variant of merge that's useful for webpack configuration",
|
|
"author": "Juho Vepsalainen <bebraw@gmail.com>",
|
|
"version": "5.10.0",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier . --write --ignore-path .gitignore",
|
|
"start": "tsdx watch",
|
|
"test": "tsdx test",
|
|
"prepare": "npm run build"
|
|
},
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"clone-deep": "^4.0.1",
|
|
"flat": "^5.0.2",
|
|
"wildcard": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/estree": "0.0.48",
|
|
"@types/flat": "^5.0.3",
|
|
"husky": "^6.0.0",
|
|
"prettier": "^2.3.1",
|
|
"tsdx": "^0.14.1",
|
|
"tslib": "^2.2.0",
|
|
"typescript": "^4.3.2",
|
|
"webpack": "^5.38.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/survivejs/webpack-merge.git"
|
|
},
|
|
"homepage": "https://github.com/survivejs/webpack-merge",
|
|
"bugs": {
|
|
"url": "https://github.com/survivejs/webpack-merge/issues"
|
|
},
|
|
"keywords": [
|
|
"webpack",
|
|
"merge"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"dist/*.js"
|
|
]
|
|
},
|
|
"license": "MIT",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run test"
|
|
}
|
|
}
|
|
}
|