mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 05:47:44 +01:00
Many dependency updates
@storybook 6.4.20 blocks most of others like: react 18, webpack 5, and keeps lots of unnecessary dependencies due to chakra 2 dep.
This commit is contained in:
parent
f5646f57d1
commit
ab00c9f426
6 changed files with 7126 additions and 7811 deletions
|
@ -37,23 +37,20 @@ module.exports = {
|
||||||
tls: 'empty'
|
tls: 'empty'
|
||||||
},
|
},
|
||||||
devServer: {
|
devServer: {
|
||||||
contentBase: "./public",
|
|
||||||
// See <https://webpack.js.org/configuration/stats/> for details
|
|
||||||
stats: 'minimal',
|
|
||||||
// enable HMR
|
// enable HMR
|
||||||
hot: true,
|
hot: true,
|
||||||
// embed the webpack-dev-server runtime into the bundle
|
|
||||||
inline: true,
|
|
||||||
// serve index.html in place of 404 responses to allow HTML5 history
|
// serve index.html in place of 404 responses to allow HTML5 history
|
||||||
historyApiFallback: true,
|
historyApiFallback: true,
|
||||||
port: PORT,
|
port: PORT,
|
||||||
host: HOST,
|
host: HOST,
|
||||||
watchOptions: {
|
watchFiles: {
|
||||||
// Disabled polling by default as it causes lots of CPU usage and hence drains laptop batteries. To enable polling add WEBPACK_DEV_SERVER_POLLING to your environment
|
options: {
|
||||||
// See <https://webpack.js.org/configuration/watch/#watchoptions-poll> for details
|
// Disabled polling by default as it causes lots of CPU usage and hence drains laptop batteries. To enable polling add WEBPACK_DEV_SERVER_POLLING to your environment
|
||||||
poll: (!!process.env.WEBPACK_DEV_SERVER_POLLING ? true : false),
|
// See <https://webpack.js.org/configuration/watch/#watchoptions-poll> for details
|
||||||
watch: false
|
usePolling: (!!process.env.WEBPACK_DEV_SERVER_POLLING ? true : false),
|
||||||
},
|
watch: false
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.NoEmitOnErrorsPlugin(),
|
new webpack.NoEmitOnErrorsPlugin(),
|
||||||
|
@ -65,11 +62,13 @@ module.exports = {
|
||||||
new HtmlWebpackInlineSVGPlugin({
|
new HtmlWebpackInlineSVGPlugin({
|
||||||
runPreEmit: true,
|
runPreEmit: true,
|
||||||
}),
|
}),
|
||||||
new CopyWebpackPlugin([
|
new CopyWebpackPlugin({
|
||||||
{
|
patterns: [
|
||||||
from: './src/manifest.json',
|
{
|
||||||
to: 'manifest.json'
|
from: './src/manifest.json',
|
||||||
}
|
to: 'manifest.json'
|
||||||
])
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
|
@ -48,12 +48,14 @@ module.exports = {
|
||||||
new HtmlWebpackInlineSVGPlugin({
|
new HtmlWebpackInlineSVGPlugin({
|
||||||
runPreEmit: true,
|
runPreEmit: true,
|
||||||
}),
|
}),
|
||||||
new CopyWebpackPlugin([
|
new CopyWebpackPlugin({
|
||||||
{
|
patterns: [
|
||||||
from: './src/manifest.json',
|
{
|
||||||
to: 'manifest.json'
|
from: './src/manifest.json',
|
||||||
}
|
to: 'manifest.json'
|
||||||
]),
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
new BundleAnalyzerPlugin({
|
new BundleAnalyzerPlugin({
|
||||||
analyzerMode: 'static',
|
analyzerMode: 'static',
|
||||||
defaultSizes: 'gzip',
|
defaultSizes: 'gzip',
|
||||||
|
|
14708
package-lock.json
generated
14708
package-lock.json
generated
File diff suppressed because it is too large
Load diff
158
package.json
158
package.json
|
@ -4,14 +4,14 @@
|
||||||
"description": "A MapboxGL visual style editor",
|
"description": "A MapboxGL visual style editor",
|
||||||
"main": "''",
|
"main": "''",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"stats": "webpack --config config/webpack.production.config.js --profile --json > stats.json",
|
"stats": "webpack --config config/webpack.production.config.js --progress=profile --json > stats.json",
|
||||||
"build": "webpack --config config/webpack.production.config.js --progress --profile --colors",
|
"build": "webpack --config config/webpack.production.config.js --progress=profile --color",
|
||||||
"profiling-build": "webpack --config config/webpack.profiling.config.js --progress --profile --colors",
|
"profiling-build": "webpack --config config/webpack.profiling.config.js --progress=profile --color",
|
||||||
"test": "cross-env NODE_ENV=test wdio config/wdio.conf.js",
|
"test": "cross-env NODE_ENV=test wdio config/wdio.conf.js",
|
||||||
"test-watch": "cross-env NODE_ENV=test wdio config/wdio.conf.js --watch",
|
"test-watch": "cross-env NODE_ENV=test wdio config/wdio.conf.js --watch",
|
||||||
"start": "webpack-dev-server --progress --profile --colors --config config/webpack.config.js",
|
"start": "webpack-dev-server --progress=profile --color --config config/webpack.config.js",
|
||||||
"start-prod": "webpack-dev-server --progress --profile --colors --config config/webpack.production.config.js",
|
"start-prod": "webpack-dev-server --progress=profile --color --config config/webpack.production.config.js",
|
||||||
"start-sandbox": "webpack-dev-server --disable-host-check --host 0.0.0.0 --progress --profile --colors --config config/webpack.production.config.js",
|
"start-sandbox": "webpack-dev-server --disable-host-check --host 0.0.0.0 --progress=profile --color --config config/webpack.production.config.js",
|
||||||
"lint-js": "eslint --ext js --ext jsx src test",
|
"lint-js": "eslint --ext js --ext jsx src test",
|
||||||
"lint-css": "stylelint \"src/styles/*.scss\"",
|
"lint-css": "stylelint \"src/styles/*.scss\"",
|
||||||
"lint": "npm run lint-js && npm run lint-css",
|
"lint": "npm run lint-js && npm run lint-css",
|
||||||
|
@ -26,49 +26,47 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "https://github.com/maputnik/editor#readme",
|
"homepage": "https://github.com/maputnik/editor#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "^7.8.4",
|
|
||||||
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
||||||
"@mapbox/mapbox-gl-style-spec": "^13.15.0",
|
"@mapbox/mapbox-gl-style-spec": "^13.23.1",
|
||||||
"@mdi/react": "^1.4.0",
|
"@mdi/react": "^1.5.0",
|
||||||
"array-move": "^2.2.1",
|
"array-move": "^4.0.0",
|
||||||
"caniuse-lite": "^1.0.30001325",
|
"classnames": "^2.3.1",
|
||||||
"classnames": "^2.2.6",
|
"codemirror": "^5.65.2",
|
||||||
"codemirror": "^5.52.0",
|
"color": "^4.2.3",
|
||||||
"color": "^3.1.2",
|
"detect-browser": "^5.3.0",
|
||||||
"detect-browser": "^5.0.0",
|
"file-saver": "^2.0.5",
|
||||||
"file-saver": "^2.0.2",
|
"json-stringify-pretty-compact": "^3.0.0",
|
||||||
"json-to-ast": "^2.1.0",
|
"json-to-ast": "^2.1.0",
|
||||||
"jsonlint": "github:josdejong/jsonlint#85a19d7",
|
"jsonlint": "github:josdejong/jsonlint#85a19d7",
|
||||||
"lodash": "^4.17.15",
|
"lodash": "^4.17.21",
|
||||||
"lodash.capitalize": "^4.2.1",
|
"lodash.capitalize": "^4.2.1",
|
||||||
"lodash.clamp": "^4.0.3",
|
"lodash.clamp": "^4.0.3",
|
||||||
"lodash.clonedeep": "^4.5.0",
|
"lodash.clonedeep": "^4.5.0",
|
||||||
"lodash.get": "^4.4.2",
|
"lodash.get": "^4.4.2",
|
||||||
"lodash.isequal": "^4.5.0",
|
"lodash.isequal": "^4.5.0",
|
||||||
"lodash.throttle": "^4.1.1",
|
"lodash.throttle": "^4.1.1",
|
||||||
"mapbox-gl": "^1.11.0",
|
"mapbox-gl": "^1.13.2",
|
||||||
"mapbox-gl-inspect": "^1.3.1",
|
"mapbox-gl-inspect": "^1.3.1",
|
||||||
"maputnik-design": "github:maputnik/design#172b06c",
|
"maputnik-design": "github:maputnik/design#172b06c",
|
||||||
"ol": "^6.3.1",
|
"ol": "^6.14.1",
|
||||||
"ol-mapbox-style": "^6.0.1",
|
"ol-mapbox-style": "^7.1.1",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.8.1",
|
||||||
"react": "^16.12.0",
|
"react": "^16.0.0",
|
||||||
"react-accessible-accordion": "^3.0.1",
|
"react-accessible-accordion": "^4.0.0",
|
||||||
"react-aria-menubutton": "^6.3.0",
|
"react-aria-menubutton": "^7.0.3",
|
||||||
"react-aria-modal": "^4.0.0",
|
"react-aria-modal": "^4.0.1",
|
||||||
"react-autobind": "^1.0.6",
|
"react-autobind": "^1.0.6",
|
||||||
"react-autocomplete": "^1.8.1",
|
"react-autocomplete": "^1.8.1",
|
||||||
"react-collapse": "^5.0.1",
|
"react-collapse": "^5.1.1",
|
||||||
"react-color": "^2.18.0",
|
"react-color": "^2.19.3",
|
||||||
"react-dom": "^16.12.0",
|
"react-dom": "^16.0.0",
|
||||||
"react-file-reader-input": "^2.0.0",
|
"react-file-reader-input": "^2.0.0",
|
||||||
"react-icon-base": "^2.1.2",
|
"react-icon-base": "^2.1.2",
|
||||||
"react-icons": "^3.9.0",
|
"react-icons": "^4.3.1",
|
||||||
"react-motion": "^0.5.2",
|
"react-sortable-hoc": "^2.0.0",
|
||||||
"react-sortable-hoc": "^1.11.0",
|
|
||||||
"reconnecting-websocket": "^4.4.0",
|
"reconnecting-websocket": "^4.4.0",
|
||||||
"sass": "^1.49.9",
|
"sass": "^1.50.0",
|
||||||
"slugify": "^1.4.5",
|
"slugify": "^1.6.5",
|
||||||
"string-hash": "^1.1.3",
|
"string-hash": "^1.1.3",
|
||||||
"url": "^0.11.0"
|
"url": "^0.11.0"
|
||||||
},
|
},
|
||||||
|
@ -118,59 +116,59 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.8.4",
|
"@babel/core": "^7.17.9",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||||
"@babel/plugin-transform-runtime": "^7.6.2",
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
||||||
"@babel/preset-env": "^7.6.3",
|
"@babel/preset-env": "^7.16.11",
|
||||||
"@babel/preset-flow": "^7.0.0",
|
"@babel/preset-flow": "^7.16.7",
|
||||||
"@babel/preset-react": "^7.6.3",
|
"@babel/preset-react": "^7.16.7",
|
||||||
"@mdi/js": "^5.0.45",
|
"@mdi/js": "^6.6.96",
|
||||||
"@storybook/addon-a11y": "^5.3.19",
|
"@storybook/addon-a11y": "^6.4.20",
|
||||||
"@storybook/addon-actions": "^5.3.19",
|
"@storybook/addon-actions": "^6.4.20",
|
||||||
"@storybook/addon-links": "^5.3.19",
|
"@storybook/addon-links": "^6.4.20",
|
||||||
"@storybook/addon-storysource": "^5.3.19",
|
"@storybook/addon-storysource": "^6.4.20",
|
||||||
"@storybook/addons": "^5.3.19",
|
"@storybook/addons": "^6.4.20",
|
||||||
"@storybook/react": "^5.3.19",
|
"@storybook/react": "^6.4.20",
|
||||||
"@storybook/theming": "^5.3.19",
|
"@storybook/theming": "^6.4.20",
|
||||||
"@wdio/cli": "^6.1.14",
|
"@wdio/cli": "^7.19.3",
|
||||||
"@wdio/local-runner": "^6.1.14",
|
"@wdio/local-runner": "^7.19.3",
|
||||||
"@wdio/mocha-framework": "^6.1.14",
|
"@wdio/mocha-framework": "^7.19.3",
|
||||||
"@wdio/selenium-standalone-service": "^6.1.14",
|
"@wdio/selenium-standalone-service": "^7.19.1",
|
||||||
"@wdio/spec-reporter": "^6.1.14",
|
"@wdio/spec-reporter": "^7.19.1",
|
||||||
"babel-eslint": "^10.0.3",
|
"babel-eslint": "^10.1.0",
|
||||||
"babel-loader": "^8.1.0",
|
"babel-loader": "^8.2.4",
|
||||||
"babel-plugin-istanbul": "^6.0.0",
|
"babel-plugin-istanbul": "^6.1.1",
|
||||||
"babel-plugin-static-fs": "^3.0.0",
|
"babel-plugin-static-fs": "^3.0.0",
|
||||||
"copy-webpack-plugin": "^5.1.1",
|
"copy-webpack-plugin": "^6.4.1",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"cross-env": "^7.0.2",
|
"cross-env": "^7.0.3",
|
||||||
"css-loader": "^3.4.2",
|
"css-loader": "^5.2.7",
|
||||||
"eslint": "^6.8.0",
|
"eslint": "^8.12.0",
|
||||||
"eslint-plugin-react": "^7.18.3",
|
"eslint-plugin-react": "^7.29.4",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.3",
|
||||||
"file-loader": "^6.0.0",
|
"html-webpack-inline-svg-plugin": "^2.3.0",
|
||||||
"html-webpack-inline-svg-plugin": "^1.3.0",
|
"html-webpack-plugin": "^4.5.2",
|
||||||
"html-webpack-plugin": "^3.2.0",
|
"is-docker": "^3.0.0",
|
||||||
"is-docker": "^2.0.0",
|
|
||||||
"istanbul": "^0.4.5",
|
"istanbul": "^0.4.5",
|
||||||
"istanbul-lib-coverage": "^3.0.0",
|
"istanbul-lib-coverage": "^3.2.0",
|
||||||
"mkdirp": "^1.0.4",
|
"mkdirp": "^1.0.4",
|
||||||
"mocha": "^7.1.2",
|
"mocha": "^9.2.2",
|
||||||
"react-hot-loader": "^4.12.19",
|
"postcss": "^8.4.12",
|
||||||
"sass-loader": "^8.0.2",
|
"react-hot-loader": "^4.13.0",
|
||||||
"selenium-standalone": "^6.17.0",
|
"sass-loader": "^10.2.1",
|
||||||
"style-loader": "^1.1.3",
|
"style-loader": "^2.0.0",
|
||||||
"stylelint": "^13.3.0",
|
"stylelint": "^14.6.1",
|
||||||
"stylelint-config-recommended-scss": "^4.2.0",
|
"stylelint-config-recommended-scss": "^6.0.0",
|
||||||
"stylelint-scss": "^3.14.2",
|
"stylelint-scss": "^4.2.0",
|
||||||
"svg-inline-loader": "^0.8.2",
|
"svg-inline-loader": "^0.8.2",
|
||||||
"transform-loader": "^0.2.4",
|
"transform-loader": "^0.2.4",
|
||||||
"uuid": "^7.0.3",
|
"typescript": "^4.6.3",
|
||||||
"webdriverio": "^6.1.11",
|
"uuid": "^8.3.2",
|
||||||
"webpack": "^4.41.6",
|
"webdriverio": "^7.19.3",
|
||||||
"webpack-bundle-analyzer": "^3.6.0",
|
"webpack": "^4.46.0",
|
||||||
|
"webpack-bundle-analyzer": "^4.5.0",
|
||||||
"webpack-cleanup-plugin": "^0.5.1",
|
"webpack-cleanup-plugin": "^0.5.1",
|
||||||
"webpack-cli": "^3.3.11",
|
"webpack-cli": "^4.9.2",
|
||||||
"webpack-dev-server": "^3.10.3"
|
"webpack-dev-server": "^4.8.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ import cloneDeep from 'lodash.clonedeep'
|
||||||
import clamp from 'lodash.clamp'
|
import clamp from 'lodash.clamp'
|
||||||
import get from 'lodash.get'
|
import get from 'lodash.get'
|
||||||
import {unset} from 'lodash'
|
import {unset} from 'lodash'
|
||||||
import arrayMove from 'array-move'
|
import {arrayMoveImmutable} from 'array-move'
|
||||||
import url from 'url'
|
import url from 'url'
|
||||||
import hash from "string-hash";
|
import hash from "string-hash";
|
||||||
|
|
||||||
|
@ -486,7 +486,7 @@ export default class App extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
layers = layers.slice(0);
|
layers = layers.slice(0);
|
||||||
layers = arrayMove(layers, oldIndex, newIndex);
|
layers = arrayMoveMutable(layers, oldIndex, newIndex);
|
||||||
this.onLayersChange(layers);
|
this.onLayersChange(layers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -276,26 +276,6 @@ export default class DataProperty extends React.Component {
|
||||||
{deleteStopBtn}
|
{deleteStopBtn}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
return <Block
|
|
||||||
error={error}
|
|
||||||
key={key}
|
|
||||||
action={deleteStopBtn}
|
|
||||||
label=""
|
|
||||||
>
|
|
||||||
{zoomInput}
|
|
||||||
<div className="maputnik-data-spec-property-stop-data">
|
|
||||||
{dataInput}
|
|
||||||
</div>
|
|
||||||
<div className="maputnik-data-spec-property-stop-value">
|
|
||||||
<InputSpec
|
|
||||||
fieldName={this.props.fieldName}
|
|
||||||
fieldSpec={this.props.fieldSpec}
|
|
||||||
value={value}
|
|
||||||
onChange={(_, newValue) => this.changeStop(idx, {zoom: zoomLevel, value: dataLevel}, newValue)}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</Block>
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue