Skip to content

Commit

Permalink
version 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmail committed Nov 9, 2024
1 parent ea40d1c commit 76f9bc7
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 45 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* version 3.6.1 - 2024-11-09
* Search page: add 'layer' as advanced option (already exists on reverse page)
* NPM package updates: Svelte 5.1

* version 3.6.0 - 2024-10-20
* Reverse page: Remove click handler when switching other page. Thanks ericgrosso
* Reverse page: Fix test that longitude is filled on form submit. Thanks ericgrosso
Expand Down
93 changes: 48 additions & 45 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,49 @@
{
"name": "nominatim-ui",
"description": "Debug web interface for Nominatim geocoder",
"version": "3.6.0",
"license": "GPL-2.0",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --quiet *.js src/ test/",
"lint:fix": "eslint --fix *.js src/ test/",
"test": "rollup -c && mocha --recursive test/",
"start": "static-server dist"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@rollup/plugin-commonjs": "^28.0",
"@rollup/plugin-node-resolve": "^15.0",
"eslint": "^9.0",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0",
"eslint-plugin-svelte": "^2.13",
"fs-extra": "^11.0.0",
"globals": "^15.11.0",
"http": "^0.0.1-security",
"http-proxy": "^1.18.1",
"mocha": "^10.0",
"puppeteer": "^23.0",
"rollup": "^4.22.4",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"static-server": "^2.2.1",
"svelte": "^5.0.0"
},
"dependencies": {
"bootstrap": "^5.0.0",
"escape-html": "^1.0.3",
"leaflet": "1.9.4",
"leaflet-minimap": "^3.6.1",
"timeago.js": "^4.0.2"
},
"type": "module"
}
"name": "nominatim-ui",
"description": "Debug web interface for Nominatim geocoder",
"version": "3.6.1",
"license": "GPL-2.0",
"scripts":
{
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --quiet *.js src/ test/",
"lint:fix": "eslint --fix *.js src/ test/",
"test": "rollup -c && mocha --recursive test/",
"start": "static-server dist"
},
"devDependencies":
{
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@rollup/plugin-commonjs": "^28.0",
"@rollup/plugin-node-resolve": "^15.0",
"eslint": "^9.0",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0",
"eslint-plugin-svelte": "^2.13",
"fs-extra": "^11.0.0",
"globals": "^15.11.0",
"http": "^0.0.1-security",
"http-proxy": "^1.18.1",
"mocha": "^10.0",
"puppeteer": "^23.0",
"rollup": "^4.22.4",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"static-server": "^2.2.1",
"svelte": "^5.0.0"
},
"dependencies":
{
"bootstrap": "^5.0.0",
"escape-html": "^1.0.3",
"leaflet": "1.9.4",
"leaflet-minimap": "^3.6.1",
"timeago.js": "^4.0.2"
},
"type": "module"
}

0 comments on commit 76f9bc7

Please sign in to comment.