Add progressive web app companion for cross-platform access
Vite + TypeScript PWA that mirrors the Android app's core features: - Pre-processed shelter data (build-time UTM33N→WGS84 conversion) - Leaflet map with shelter markers, user location, and offline tiles - Canvas compass arrow (ported from DirectionArrowView.kt) - IndexedDB shelter cache with 7-day staleness check - Service worker with CacheFirst tiles and precached app shell - i18n for en, nb, nn (ported from Android strings.xml) - iOS/Android compass handling with low-pass filter - Respects user map interaction (no auto-snap on pan/zoom) - Build revision cache-breaker for reliable SW updates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
46365b713b
commit
e8428de775
12051 changed files with 1799735 additions and 0 deletions
139
pwa/node_modules/vite-node/dist/cli.mjs
generated
vendored
Normal file
139
pwa/node_modules/vite-node/dist/cli.mjs
generated
vendored
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
import { resolve } from 'node:path';
|
||||
import cac from 'cac';
|
||||
import { f } from './chunk-browser.mjs';
|
||||
import { createServer, loadEnv } from 'vite';
|
||||
import { ViteNodeRunner } from './client.mjs';
|
||||
import { ViteNodeServer } from './server.mjs';
|
||||
import { installSourcemapsSupport } from './source-map.mjs';
|
||||
import { toArray } from './utils.mjs';
|
||||
import { v as viteNodeHmrPlugin, a as createHotContext, h as handleMessage } from './chunk-hmr.mjs';
|
||||
import 'node:module';
|
||||
import 'node:url';
|
||||
import 'node:vm';
|
||||
import 'debug';
|
||||
import 'pathe';
|
||||
import 'node:fs';
|
||||
import 'node:assert';
|
||||
import 'node:perf_hooks';
|
||||
import 'es-module-lexer';
|
||||
import './constants.mjs';
|
||||
import 'node:events';
|
||||
|
||||
var version = "2.1.9";
|
||||
|
||||
const cli = cac("vite-node");
|
||||
cli.option("-r, --root <path>", "Use specified root directory").option("-c, --config <path>", "Use specified config file").option("-m, --mode <mode>", "Set env mode").option("-w, --watch", 'Restart on file changes, similar to "nodemon"').option("--script", "Use vite-node as a script runner").option("--options <options>", "Use specified Vite server options").option("-v, --version", "Output the version number").option("-h, --help", "Display help for command");
|
||||
cli.command("[...files]").allowUnknownOptions().action(run);
|
||||
cli.parse(process.argv, { run: false });
|
||||
if (cli.args.length === 0) {
|
||||
cli.runMatchedCommand();
|
||||
} else {
|
||||
const i = cli.rawArgs.indexOf(cli.args[0]) + 1;
|
||||
const scriptArgs = cli.rawArgs.slice(i).filter((it) => it !== "--");
|
||||
const executeArgs = [...cli.rawArgs.slice(0, i), "--", ...scriptArgs];
|
||||
cli.parse(executeArgs);
|
||||
}
|
||||
async function run(files, options = {}) {
|
||||
var _a, _b;
|
||||
if (options.script) {
|
||||
files = [files[0]];
|
||||
options = {};
|
||||
process.argv = [
|
||||
process.argv[0],
|
||||
resolve(files[0]),
|
||||
...process.argv.slice(2).filter((arg) => arg !== "--script" && arg !== files[0])
|
||||
];
|
||||
} else {
|
||||
process.argv = [...process.argv.slice(0, 2), ...options["--"] || []];
|
||||
}
|
||||
if (options.version) {
|
||||
cli.version(version);
|
||||
cli.outputVersion();
|
||||
process.exit(0);
|
||||
}
|
||||
if (options.help) {
|
||||
cli.version(version).outputHelp();
|
||||
process.exit(0);
|
||||
}
|
||||
if (!files.length) {
|
||||
console.error(f.red("No files specified."));
|
||||
cli.version(version).outputHelp();
|
||||
process.exit(1);
|
||||
}
|
||||
const serverOptions = options.options ? parseServerOptions(options.options) : {};
|
||||
const server = await createServer({
|
||||
logLevel: "error",
|
||||
configFile: options.config,
|
||||
root: options.root,
|
||||
mode: options.mode,
|
||||
server: {
|
||||
hmr: !!options.watch,
|
||||
watch: options.watch ? void 0 : null
|
||||
},
|
||||
plugins: [options.watch && viteNodeHmrPlugin()]
|
||||
});
|
||||
await server.pluginContainer.buildStart({});
|
||||
const env = loadEnv(server.config.mode, server.config.envDir, "");
|
||||
for (const key in env) {
|
||||
(_a = process.env)[key] ?? (_a[key] = env[key]);
|
||||
}
|
||||
const node = new ViteNodeServer(server, serverOptions);
|
||||
installSourcemapsSupport({
|
||||
getSourceMap: (source) => node.getSourceMap(source)
|
||||
});
|
||||
const runner = new ViteNodeRunner({
|
||||
root: server.config.root,
|
||||
base: server.config.base,
|
||||
fetchModule(id) {
|
||||
return node.fetchModule(id);
|
||||
},
|
||||
resolveId(id, importer) {
|
||||
return node.resolveId(id, importer);
|
||||
},
|
||||
createHotContext(runner2, url) {
|
||||
return createHotContext(runner2, server.emitter, files, url);
|
||||
}
|
||||
});
|
||||
await runner.executeId("/@vite/env");
|
||||
for (const file of files) {
|
||||
await runner.executeFile(file);
|
||||
}
|
||||
if (!options.watch) {
|
||||
await server.close();
|
||||
}
|
||||
(_b = server.emitter) == null ? void 0 : _b.on("message", (payload) => {
|
||||
handleMessage(runner, server.emitter, files, payload);
|
||||
});
|
||||
if (options.watch) {
|
||||
process.on("uncaughtException", (err) => {
|
||||
console.error(f.red("[vite-node] Failed to execute file: \n"), err);
|
||||
});
|
||||
}
|
||||
}
|
||||
function parseServerOptions(serverOptions) {
|
||||
var _a, _b, _c, _d, _e, _f, _g, _h;
|
||||
const inlineOptions = ((_a = serverOptions.deps) == null ? void 0 : _a.inline) === true ? true : toArray((_b = serverOptions.deps) == null ? void 0 : _b.inline);
|
||||
return {
|
||||
...serverOptions,
|
||||
deps: {
|
||||
...serverOptions.deps,
|
||||
inlineFiles: toArray((_c = serverOptions.deps) == null ? void 0 : _c.inlineFiles),
|
||||
inline: inlineOptions !== true ? inlineOptions.map((dep) => {
|
||||
return dep.startsWith("/") && dep.endsWith("/") ? new RegExp(dep) : dep;
|
||||
}) : true,
|
||||
external: toArray((_d = serverOptions.deps) == null ? void 0 : _d.external).map((dep) => {
|
||||
return dep.startsWith("/") && dep.endsWith("/") ? new RegExp(dep) : dep;
|
||||
}),
|
||||
moduleDirectories: ((_e = serverOptions.deps) == null ? void 0 : _e.moduleDirectories) ? toArray((_f = serverOptions.deps) == null ? void 0 : _f.moduleDirectories) : void 0
|
||||
},
|
||||
transformMode: {
|
||||
...serverOptions.transformMode,
|
||||
ssr: toArray((_g = serverOptions.transformMode) == null ? void 0 : _g.ssr).map(
|
||||
(dep) => new RegExp(dep)
|
||||
),
|
||||
web: toArray((_h = serverOptions.transformMode) == null ? void 0 : _h.web).map(
|
||||
(dep) => new RegExp(dep)
|
||||
)
|
||||
}
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue