Fix European trip return heuristic for weekend location tracking
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>
This commit is contained in:
parent
663dc479c2
commit
ea4980a5d7
6407 changed files with 1072847 additions and 18 deletions
20
node_modules/@webpack-cli/serve/LICENSE
generated
vendored
Normal file
20
node_modules/@webpack-cli/serve/LICENSE
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
Copyright JS Foundation and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
32
node_modules/@webpack-cli/serve/README.md
generated
vendored
Normal file
32
node_modules/@webpack-cli/serve/README.md
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# webpack-cli serve
|
||||
|
||||
[![NPM Downloads][downloads]][downloads-url]
|
||||
|
||||
> **Note**
|
||||
>
|
||||
> This package is used by webpack-cli under-the-hood and is not intended for installation
|
||||
|
||||
## Description
|
||||
|
||||
This package contains the logic to run [webpack-dev-server](https://github.com/webpack/webpack-dev-server) to serve your webpack app and provide live reloading.
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
npm i -D webpack-cli @webpack-cli/serve
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
### CLI (via `webpack-cli`)
|
||||
|
||||
```bash
|
||||
npx webpack-cli serve
|
||||
```
|
||||
|
||||
### Options
|
||||
|
||||
Checkout [`SERVE-OPTIONS-v3.md`](https://github.com/webpack/webpack-cli/blob/master/SERVE-OPTIONS-v3.md) or [`SERVE-OPTIONS-v4.md`](https://github.com/webpack/webpack-cli/blob/master/SERVE-OPTIONS-v4.md) to see list of all available options for `serve` command for respective [`webpack-dev-server`](https://github.com/webpack/webpack-dev-server) version.
|
||||
|
||||
[downloads]: https://img.shields.io/npm/dm/@webpack-cli/serve.svg
|
||||
[downloads-url]: https://www.npmjs.com/package/@webpack-cli/serve
|
||||
5
node_modules/@webpack-cli/serve/lib/index.d.ts
generated
vendored
Normal file
5
node_modules/@webpack-cli/serve/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { type IWebpackCLI } from "webpack-cli";
|
||||
declare class ServeCommand {
|
||||
apply(cli: IWebpackCLI): Promise<void>;
|
||||
}
|
||||
export default ServeCommand;
|
||||
174
node_modules/@webpack-cli/serve/lib/index.js
generated
vendored
Normal file
174
node_modules/@webpack-cli/serve/lib/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,174 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const WEBPACK_PACKAGE = process.env.WEBPACK_PACKAGE || "webpack";
|
||||
const WEBPACK_DEV_SERVER_PACKAGE = process.env.WEBPACK_DEV_SERVER_PACKAGE || "webpack-dev-server";
|
||||
class ServeCommand {
|
||||
async apply(cli) {
|
||||
const loadDevServerOptions = () => {
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
const devServer = require(WEBPACK_DEV_SERVER_PACKAGE);
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const options = cli.webpack.cli.getArguments(devServer.schema);
|
||||
// New options format
|
||||
// { flag1: {}, flag2: {} }
|
||||
return Object.keys(options).map((key) => {
|
||||
options[key].name = key;
|
||||
return options[key];
|
||||
});
|
||||
};
|
||||
await cli.makeCommand({
|
||||
name: "serve [entries...]",
|
||||
alias: ["server", "s"],
|
||||
description: "Run the webpack dev server and watch for source file changes while serving.",
|
||||
usage: "[entries...] [options]",
|
||||
pkg: "@webpack-cli/serve",
|
||||
dependencies: [WEBPACK_PACKAGE, WEBPACK_DEV_SERVER_PACKAGE],
|
||||
}, async () => {
|
||||
let devServerFlags = [];
|
||||
cli.webpack = await cli.loadWebpack();
|
||||
try {
|
||||
devServerFlags = loadDevServerOptions();
|
||||
}
|
||||
catch (error) {
|
||||
cli.logger.error(`You need to install 'webpack-dev-server' for running 'webpack serve'.\n${error}`);
|
||||
process.exit(2);
|
||||
}
|
||||
const builtInOptions = cli.getBuiltInOptions();
|
||||
return [...builtInOptions, ...devServerFlags];
|
||||
},
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
async (entries, options) => {
|
||||
const builtInOptions = cli.getBuiltInOptions();
|
||||
let devServerFlags = [];
|
||||
try {
|
||||
devServerFlags = loadDevServerOptions();
|
||||
}
|
||||
catch (error) {
|
||||
// Nothing, to prevent future updates
|
||||
}
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const webpackCLIOptions = {};
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const devServerCLIOptions = {};
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const processors = [];
|
||||
for (const optionName in options) {
|
||||
const kebabedOption = cli.toKebabCase(optionName);
|
||||
const isBuiltInOption = builtInOptions.find(
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
(builtInOption) => builtInOption.name === kebabedOption);
|
||||
if (isBuiltInOption) {
|
||||
webpackCLIOptions[optionName] = options[optionName];
|
||||
}
|
||||
else {
|
||||
const needToProcess = devServerFlags.find(
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
(devServerOption) => devServerOption.name === kebabedOption && devServerOption.processor);
|
||||
if (needToProcess) {
|
||||
processors.push(needToProcess.processor);
|
||||
}
|
||||
devServerCLIOptions[optionName] = options[optionName];
|
||||
}
|
||||
}
|
||||
for (const processor of processors) {
|
||||
processor(devServerCLIOptions);
|
||||
}
|
||||
if (entries.length > 0) {
|
||||
webpackCLIOptions.entry = [...entries, ...(webpackCLIOptions.entry || [])];
|
||||
}
|
||||
webpackCLIOptions.argv = Object.assign(Object.assign({}, options), { env: Object.assign({ WEBPACK_SERVE: true }, options.env) });
|
||||
webpackCLIOptions.isWatchingLikeCommand = true;
|
||||
const compiler = await cli.createCompiler(webpackCLIOptions);
|
||||
if (!compiler) {
|
||||
return;
|
||||
}
|
||||
const servers = [];
|
||||
if (cli.needWatchStdin(compiler)) {
|
||||
process.stdin.on("end", () => {
|
||||
Promise.all(servers.map((server) => {
|
||||
return server.stop();
|
||||
})).then(() => {
|
||||
process.exit(0);
|
||||
});
|
||||
});
|
||||
process.stdin.resume();
|
||||
}
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
const DevServer = require(WEBPACK_DEV_SERVER_PACKAGE);
|
||||
try {
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
require(`${WEBPACK_DEV_SERVER_PACKAGE}/package.json`).version;
|
||||
}
|
||||
catch (err) {
|
||||
cli.logger.error(`You need to install 'webpack-dev-server' for running 'webpack serve'.\n${err}`);
|
||||
process.exit(2);
|
||||
}
|
||||
const compilers = cli.isMultipleCompiler(compiler) ? compiler.compilers : [compiler];
|
||||
const possibleCompilers = compilers.filter((compiler) => compiler.options.devServer);
|
||||
const compilersForDevServer = possibleCompilers.length > 0 ? possibleCompilers : [compilers[0]];
|
||||
const usedPorts = [];
|
||||
for (const compilerForDevServer of compilersForDevServer) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const args = devServerFlags.reduce((accumulator, flag) => {
|
||||
accumulator[flag.name] = flag;
|
||||
return accumulator;
|
||||
}, {});
|
||||
const values = Object.keys(devServerCLIOptions).reduce(
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
(accumulator, name) => {
|
||||
const kebabName = cli.toKebabCase(name);
|
||||
if (args[kebabName]) {
|
||||
accumulator[kebabName] = options[name];
|
||||
}
|
||||
return accumulator;
|
||||
}, {});
|
||||
const result = Object.assign({}, (compilerForDevServer.options.devServer || {}));
|
||||
const problems = (cli.webpack.cli && typeof cli.webpack.cli.processArguments === "function"
|
||||
? cli.webpack.cli
|
||||
: DevServer.cli).processArguments(args, result, values);
|
||||
if (problems) {
|
||||
const groupBy = (xs, key) => {
|
||||
return xs.reduce((rv, x) => {
|
||||
(rv[x[key]] = rv[x[key]] || []).push(x);
|
||||
return rv;
|
||||
}, {});
|
||||
};
|
||||
const problemsByPath = groupBy(problems, "path");
|
||||
for (const path in problemsByPath) {
|
||||
const problems = problemsByPath[path];
|
||||
for (const problem of problems) {
|
||||
cli.logger.error(`${cli.capitalizeFirstLetter(problem.type.replace(/-/g, " "))}${problem.value ? ` '${problem.value}'` : ""} for the '--${problem.argument}' option${problem.index ? ` by index '${problem.index}'` : ""}`);
|
||||
if (problem.expected) {
|
||||
cli.logger.error(`Expected: '${problem.expected}'`);
|
||||
}
|
||||
}
|
||||
}
|
||||
process.exit(2);
|
||||
}
|
||||
const devServerOptions = result;
|
||||
if (devServerOptions.port) {
|
||||
const portNumber = Number(devServerOptions.port);
|
||||
if (usedPorts.find((port) => portNumber === port)) {
|
||||
throw new Error("Unique ports must be specified for each devServer option in your webpack configuration. Alternatively, run only 1 devServer config using the --config-name flag to specify your desired config.");
|
||||
}
|
||||
usedPorts.push(portNumber);
|
||||
}
|
||||
try {
|
||||
const server = new DevServer(devServerOptions, compiler);
|
||||
await server.start();
|
||||
servers.push(server);
|
||||
}
|
||||
catch (error) {
|
||||
if (cli.isValidationError(error)) {
|
||||
cli.logger.error(error.message);
|
||||
}
|
||||
else {
|
||||
cli.logger.error(error);
|
||||
}
|
||||
process.exit(2);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
exports.default = ServeCommand;
|
||||
33
node_modules/@webpack-cli/serve/package.json
generated
vendored
Normal file
33
node_modules/@webpack-cli/serve/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"name": "@webpack-cli/serve",
|
||||
"version": "2.0.5",
|
||||
"description": "",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"keywords": [],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/webpack/webpack-cli.git"
|
||||
},
|
||||
"homepage": "https://github.com/webpack/webpack-cli/tree/master/packages/serve",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=14.15.0"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"webpack": "5.x.x",
|
||||
"webpack-cli": "5.x.x"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"webpack-dev-server": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"gitHead": "e879ce4ef91a9a89ca5ef74f533391cef5ba009d"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue