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>
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
var path = require('path');
|
|
var test = require('tape');
|
|
var resolve = require('../');
|
|
|
|
test('moduleDirectory strings', function (t) {
|
|
t.plan(4);
|
|
var dir = path.join(__dirname, 'module_dir');
|
|
var xopts = {
|
|
basedir: dir,
|
|
moduleDirectory: 'xmodules'
|
|
};
|
|
resolve('aaa', xopts, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(dir, '/xmodules/aaa/index.js'));
|
|
});
|
|
|
|
var yopts = {
|
|
basedir: dir,
|
|
moduleDirectory: 'ymodules'
|
|
};
|
|
resolve('aaa', yopts, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(dir, '/ymodules/aaa/index.js'));
|
|
});
|
|
});
|
|
|
|
test('moduleDirectory array', function (t) {
|
|
t.plan(6);
|
|
var dir = path.join(__dirname, 'module_dir');
|
|
var aopts = {
|
|
basedir: dir,
|
|
moduleDirectory: ['xmodules', 'ymodules', 'zmodules']
|
|
};
|
|
resolve('aaa', aopts, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(dir, '/xmodules/aaa/index.js'));
|
|
});
|
|
|
|
var bopts = {
|
|
basedir: dir,
|
|
moduleDirectory: ['zmodules', 'ymodules', 'xmodules']
|
|
};
|
|
resolve('aaa', bopts, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(dir, '/ymodules/aaa/index.js'));
|
|
});
|
|
|
|
var copts = {
|
|
basedir: dir,
|
|
moduleDirectory: ['xmodules', 'ymodules', 'zmodules']
|
|
};
|
|
resolve('bbb', copts, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(dir, '/zmodules/bbb/main.js'));
|
|
});
|
|
});
|