Skip to content

Commit

Permalink
chore: update dependencies (#282)
Browse files Browse the repository at this point in the history
* chore: update dependencies
  • Loading branch information
stepankuzmin authored Apr 26, 2020
1 parent 6bc73d7 commit d70126b
Show file tree
Hide file tree
Showing 3 changed files with 1,227 additions and 869 deletions.
55 changes: 29 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,59 +57,59 @@
"@mapbox/mapbox-gl-traffic": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@deck.gl/core": "^8.0.7",
"@deck.gl/layers": "^8.0.7",
"@deck.gl/mapbox": "^8.0.7",
"@luma.gl/core": "^8.0.1",
"@mapbox/mapbox-gl-language": "^0.10.0",
"@mapbox/mapbox-gl-traffic": "^1.0.2",
"@size-limit/preset-small-lib": "^4.4.0",
"@size-limit/preset-small-lib": "^4.4.5",
"@turf/random": "^6.0.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-loader": "^8.1.0",
"codecov": "^3.6.5",
"commitizen": "^4.0.3",
"css-loader": "^3.4.2",
"commitizen": "^4.0.4",
"css-loader": "^3.5.3",
"cz-conventional-changelog": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react": "^7.19.0",
"flow-bin": "^0.108.0",
"flow-coverage-report": "^0.6.1",
"flow-remove-types": "^2.119.1",
"flow-remove-types": "^2.123.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"mapbox-gl": "^1.8.1",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"mapbox-gl": "^1.9.1",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-styleguidist": "^10.6.2",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"size-limit": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"size-limit": "^4.4.5",
"standard-version": "^7.1.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.0"
"style-loader": "^1.2.0",
"webpack": "^4.43.0"
},
"config": {
"commitizen": {
Expand Down Expand Up @@ -138,7 +138,10 @@
},
"size-limit": [
{
"path": ["dist/react-map-gl.cjs.js", "dist/react-map-gl.esm.js"]
"path": [
"dist/react-map-gl.cjs.js",
"dist/react-map-gl.esm.js"
]
}
]
}
5 changes: 3 additions & 2 deletions src/components/MapGL/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import React from 'react';
import { mount } from 'enzyme';

import MapGL, { CustomLayer, Layer, Source } from '../..';
import MapGL from './index';
import { CustomLayer, Layer, Source } from '../../index';

test('render', () => {
const wrapper = mount(
Expand Down Expand Up @@ -323,7 +324,7 @@ test('renders without mapbox-gl', () => {
jest.doMock('mapbox-gl', () => null);

/* eslint-disable no-shadow, global-require */
const MapGL = require('../MapGL').default;
const MapGL = require('.').default;

const wrapper = mount(<MapGL latitude={0} longitude={0} zoom={0} />);

Expand Down
Loading

0 comments on commit d70126b

Please sign in to comment.