update dependencies

This commit is contained in:
Matt Walsh
2025-10-02 21:50:28 -05:00
parent 0fd90feb7a
commit b4de17ccd0
6 changed files with 856 additions and 3254 deletions

View File

@@ -5,8 +5,8 @@ import rename from 'gulp-rename';
const clean = () => deleteAsync(['./server/scripts/vendor/auto/**']); const clean = () => deleteAsync(['./server/scripts/vendor/auto/**']);
const vendorFiles = [ const vendorFiles = [
'./node_modules/luxon/build/es6/luxon.js', './node_modules/luxon/build/es6/luxon.mjs',
'./node_modules/luxon/build/es6/luxon.js.map', './node_modules/luxon/build/es6/luxon.mjs.map',
'./node_modules/nosleep.js/dist/NoSleep.js', './node_modules/nosleep.js/dist/NoSleep.js',
'./node_modules/suncalc/suncalc.js', './node_modules/suncalc/suncalc.js',
'./node_modules/swiped-events/src/swiped-events.js', './node_modules/swiped-events/src/swiped-events.js',
@@ -23,7 +23,6 @@ const copy = () => src(vendorFiles)
path.dirname = path.dirname.toLowerCase(); path.dirname = path.dirname.toLowerCase();
path.basename = path.basename.toLowerCase(); path.basename = path.basename.toLowerCase();
path.extname = path.extname.toLowerCase(); path.extname = path.extname.toLowerCase();
if (path.basename === 'luxon') path.extname = '.mjs';
})) }))
.pipe(dest('./server/scripts/vendor/auto')); .pipe(dest('./server/scripts/vendor/auto'));

4092
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -51,13 +51,12 @@
"swiped-events": "^1.1.4", "swiped-events": "^1.1.4",
"terser-webpack-plugin": "^5.3.6", "terser-webpack-plugin": "^5.3.6",
"webpack": "^5.99.9", "webpack": "^5.99.9",
"webpack-stream": "^7.0.0" "webpack-stream": "^7.0.0",
"metar-taf-parser": "^9.0.0"
}, },
"dependencies": { "dependencies": {
"dotenv": "^17.0.1", "dotenv": "^17.0.1",
"ejs": "^3.1.5", "ejs": "^3.1.5",
"express": "^5.1.0", "express": "^5.1.0"
"metar-taf-parser": "^9.0.0",
"npm": "^11.6.0"
} }
} }

File diff suppressed because one or more lines are too long

View File

@@ -8127,7 +8127,7 @@ function friendlyDateTime(dateTimeish) {
} }
} }
const VERSION = "3.7.1"; const VERSION = "3.7.2";
export { DateTime, Duration, FixedOffsetZone, IANAZone, Info, Interval, InvalidZone, Settings, SystemZone, VERSION, Zone }; export { DateTime, Duration, FixedOffsetZone, IANAZone, Info, Interval, InvalidZone, Settings, SystemZone, VERSION, Zone };
//# sourceMappingURL=luxon.js.map //# sourceMappingURL=luxon.mjs.map

File diff suppressed because one or more lines are too long