Skip to content

Commit

Permalink
Bump version to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nagix committed Oct 31, 2022
1 parent ebe7c1c commit 8c3748b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ Click or tap the compass button | Reset bearing to north
Click or tap the compass button + mouse or finder drag | Rotate
Click or tap the fullscreen button | Toggle the fullscreen mode
Click or tap the eye button | Toggle the underground mode
Click or tap the train/helicopter button | Switch the tracking mode
Click or tap the playback button | Toggle the playback mode
Click or tap the battery button | Toggle the eco mode
Click or tap the layer button | Show/hide the layer display settings panel
Click or tap the camera button | Show/hide the tracking mode settings panel
Click or tap the info button | Show/hide the app info panel
Click or tap a train/aircraft/station | Enable tracking or select station
Click or tap the map | Disable tracking or deselect station
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "mini-tokyo-3d",
"version": "3.1.0",
"version": "3.2.0",
"description": "A real-time 3D digital map of Tokyo's public transport system",
"main": "dist/mini-tokyo-3d.js",
"module": "dist/mini-tokyo-3d.esm.js",
"style": "dist/mini-tokyo-3d.css",
"dependencies": {
"@deck.gl/core": "^8.8.9",
"@deck.gl/layers": "^8.8.9",
"@deck.gl/mapbox": "^8.8.9",
"@deck.gl/core": "^8.8.15",
"@deck.gl/layers": "^8.8.15",
"@deck.gl/mapbox": "^8.8.15",
"@fortawesome/fontawesome-free": "^6.2.0",
"@turf/along": "^5.1.5",
"@turf/bearing": "^5.1.5",
Expand All @@ -29,32 +29,32 @@
"csscolorparser": "^1.0.3",
"japanese-holidays": "^1.0.10",
"loaders.css": "^0.1.2",
"mapbox-gl": "^2.9.2",
"mapbox-gl-animated-popup": "^0.3.0",
"mapbox-gl": "^2.10.0",
"mapbox-gl-animated-popup": "^0.4.0",
"pako": "^1.0.11",
"suncalc": "^1.9.0",
"swiper": "^8.3.2",
"three": "^0.143.0"
"swiper": "^8.4.4",
"three": "^0.146.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-strip": "^3.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@vuepress/plugin-google-analytics": "1.9.7",
"eslint": "^8.22.0",
"eslint": "^8.26.0",
"eslint-config-mourner": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"node-sass": "^7.0.1",
"eslint-plugin-jsdoc": "^39.4.0",
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-import": "^14.1.0",
"postcss": "^8.4.18",
"postcss-import": "^15.0.0",
"postcss-inline-svg": "^5.0.0",
"rollup": "^2.78.0",
"rollup": "^3.2.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"vuepress": "^1.9.7",
"vuepress-plugin-flexsearch": "^0.3.0"
},
Expand Down
8 changes: 4 additions & 4 deletions rollup.config.js → rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
import image from '@rollup/plugin-image';
import {terser} from 'rollup-plugin-terser';
import terser from '@rollup/plugin-terser';
import sass from 'node-sass';
import postcss from 'rollup-plugin-postcss';
import cssimport from 'postcss-import';
Expand All @@ -23,11 +23,11 @@ const sassRender = (content, id) => new Promise((resolve, reject) => {
});

const onwarn = (warning, defaultHandler) => {
const {code, importer, loc} = warning;
if (code == 'CIRCULAR_DEPENDENCY' && importer.includes('@luma.gl')) {
const {code, message} = warning;
if (code == 'CIRCULAR_DEPENDENCY' && message.includes('@luma.gl')) {
return;
}
if ((code == 'MISSING_EXPORT' || code == 'EVAL') && loc.file.includes('@loaders.gl')) {
if ((code == 'MISSING_EXPORT' || code == 'EVAL') && message.includes('@loaders.gl')) {
return;
}
defaultHandler(warning)
Expand Down

0 comments on commit 8c3748b

Please sign in to comment.