Skip to content

Commit

Permalink
chore: update dependencies (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvet committed Mar 1, 2018
1 parent 1f61934 commit 3c2d58d
Show file tree
Hide file tree
Showing 84 changed files with 577 additions and 502 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -13,8 +13,8 @@
"devDependencies": {
"check-node-version": "^3.2.0",
"concurrently": "^3.5.1",
"conventional-changelog-cli": "^1.3.13",
"conventional-recommended-bump": "^2.0.4",
"conventional-changelog-cli": "^1.3.15",
"conventional-recommended-bump": "^2.0.6",
"fs-extra": "^5.0.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/dx-core/package.json
Expand Up @@ -40,18 +40,18 @@
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"core-js": "^2.5.3",
"eslint": "^4.17.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.1",
"jest": "^22.3.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"jest": "^22.4.2",
"rollup": "0.50.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-license": "^0.5.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/dx-grid-core/package.json
Expand Up @@ -41,18 +41,18 @@
"devDependencies": {
"@devexpress/dx-core": "1.1.0-beta.1",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"core-js": "^2.5.3",
"eslint": "^4.17.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.1",
"jest": "^22.3.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"jest": "^22.4.2",
"rollup": "0.50.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-license": "^0.5.0"
Expand Down
@@ -1,6 +1,4 @@
import {
pureComputed,
} from './computeds';
import { pureComputed } from './computeds';

describe('Plugin computeds', () => {
describe('#pureComputed', () => {
Expand Down
4 changes: 1 addition & 3 deletions packages/dx-grid-core/src/plugins/_blueprint/helpers.test.js
@@ -1,6 +1,4 @@
import {
pureHelper,
} from './helpers';
import { pureHelper } from './helpers';

describe('Plugin helpers', () => {
describe('#_pureHelper', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
pureReducer,
} from './reducers';
import { pureReducer } from './reducers';

describe('Plugin reducers', () => {
describe('#pureReducer', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
GROUP_KEY_SEPARATOR,
} from '../grouping-state/constants';
import { GROUP_KEY_SEPARATOR } from '../grouping-state/constants';
import {
GRID_GROUP_TYPE,
GRID_GROUP_CHECK,
Expand Down
@@ -1,6 +1,4 @@
import {
getRowChange,
} from './helpers';
import { getRowChange } from './helpers';

describe('EditingState helpers', () => {
describe('#getRowChange', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
getColumnFilterConfig,
} from './helpers';
import { getColumnFilterConfig } from './helpers';

describe('FilteringPlugin helpers', () => {
describe('#getColumnFilterConfig', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
changeColumnFilter,
} from './reducers';
import { changeColumnFilter } from './reducers';

describe('FilteringState reducers', () => {
describe('#changeColumnFilter', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
groupingPanelItems,
} from './helpers';
import { groupingPanelItems } from './helpers';

describe('Plugin helpers', () => {
describe('#groupingPanelItems', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
filteredRows,
} from './computeds';
import { filteredRows } from './computeds';

describe('IntegratedFiltering computeds', () => {
describe('#filteredRows', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
GROUP_KEY_SEPARATOR,
} from '../grouping-state/constants';
import { GROUP_KEY_SEPARATOR } from '../grouping-state/constants';
import {
GRID_GROUP_TYPE,
GRID_GROUP_CHECK,
Expand Down
@@ -1,6 +1,4 @@
import {
sortedRows,
} from './computeds';
import { sortedRows } from './computeds';

describe('IntegratedSorting computeds', () => {
describe('#sortedRows', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
setCurrentPage,
} from './reducers';
import { setCurrentPage } from './reducers';

describe('PagingState reducers', () => {
describe('#setCurrentPage', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
toggleSelection,
} from './reducers';
import { toggleSelection } from './reducers';

describe('SelectionState reducers', () => {
describe('#toggleSelection', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
changeColumnSorting,
} from './reducers';
import { changeColumnSorting } from './reducers';

describe('SortingState reducers', () => {
describe('#changeColumnSorting', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
changeColumnOrder,
} from './reducers';
import { changeColumnOrder } from './reducers';

describe('TableColumnReordering reducers', () => {
describe('#changeColumnOrder', () => {
Expand Down
@@ -1,7 +1,5 @@
import { TABLE_DATA_TYPE } from '../table/constants';
import {
tableColumnsWithWidths,
} from './computeds';
import { tableColumnsWithWidths } from './computeds';

describe('TableColumnResizing Plugin computeds', () => {
describe('#tableColumnsWithWidths', () => {
Expand Down
@@ -1,7 +1,5 @@
import { TABLE_EDIT_COMMAND_TYPE } from './constants';
import {
tableColumnsWithEditing,
} from './computeds';
import { tableColumnsWithEditing } from './computeds';

describe('TableEditColumn Plugin computeds', () => {
describe('#tableColumnsWithEditing', () => {
Expand Down
@@ -1,8 +1,6 @@
import { TABLE_ADDED_TYPE, TABLE_EDIT_TYPE } from './constants';
import { TABLE_DATA_TYPE } from '../table/constants';
import {
tableRowsWithEditing,
} from './computeds';
import { tableRowsWithEditing } from './computeds';

describe('TableEditRow Plugin computeds', () => {
describe('#tableRowsWithEditing', () => {
Expand Down
@@ -1,7 +1,5 @@
import { TABLE_FILTER_TYPE } from './constants';
import {
tableHeaderRowsWithFilter,
} from './computeds';
import { tableHeaderRowsWithFilter } from './computeds';

describe('TableFilterRow Plugin computeds', () => {
describe('#tableHeaderRowsWithFilter', () => {
Expand Down
@@ -1,7 +1,5 @@
import { TABLE_HEADING_TYPE } from './constants';
import {
tableRowsWithHeading,
} from './computeds';
import { tableRowsWithHeading } from './computeds';

describe('TableHeaderRow Plugin computeds', () => {
describe('#tableRowsWithHeading', () => {
Expand Down
@@ -1,6 +1,4 @@
import {
toggleDetailRowExpanded,
} from './reducers';
import { toggleDetailRowExpanded } from './reducers';

describe('TableRowDetail Plugin reducers', () => {
describe('#toggleDetailRowExpanded', () => {
Expand Down
@@ -1,7 +1,5 @@
import { TABLE_SELECT_TYPE } from './constants';
import {
tableColumnsWithSelection,
} from './computeds';
import { tableColumnsWithSelection } from './computeds';

describe('TableSelection Plugin computeds', () => {
describe('#tableColumnsWithSelection', () => {
Expand Down
14 changes: 7 additions & 7 deletions packages/dx-react-core/package.json
Expand Up @@ -47,7 +47,7 @@
"devDependencies": {
"@devexpress/dx-testing": "1.1.0-beta.1",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
Expand All @@ -56,14 +56,14 @@
"core-js": "^2.5.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
Expand All @@ -74,7 +74,7 @@
},
"dependencies": {
"@devexpress/dx-core": "1.1.0-beta.1",
"prop-types": "^15.6.0"
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "^16.2.0",
Expand Down
30 changes: 15 additions & 15 deletions packages/dx-react-demos/package.json
Expand Up @@ -49,54 +49,54 @@
"@devexpress/dx-react-grid": "1.1.0-beta.1",
"@devexpress/dx-react-grid-bootstrap3": "1.1.0-beta.1",
"@devexpress/dx-react-grid-material-ui": "1.1.0-beta.1",
"@types/react": "^16.0.37",
"@types/react": "^16.0.39",
"@types/react-dom": "^16.0.4",
"core-js": "^2.5.3",
"material-ui": "1.0.0-beta.35",
"material-ui-icons": "1.0.0-beta.35",
"prismjs": "^1.11.0",
"prop-types": "^15.6.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.2.0",
"react-frame-component": "^2.0.2",
"react-redux": "^5.0.6",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"seamless-immutable": "^7.1.3",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@devexpress/dx-testing": "1.1.0-beta.1",
"@types/jest": "^22.1.2",
"awesome-typescript-loader": "^3.4.1",
"@types/jest": "^22.1.4",
"awesome-typescript-loader": "^3.5.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.9",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"mustache": "^2.3.0",
"node-static": "^0.7.10",
"nodemon": "^1.15.0",
"nodemon": "^1.17.1",
"react-test-renderer": "^16.2.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.2",
"ts-jest": "^22.0.4",
"ts-jest": "^22.4.0",
"typescript": "^2.7.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
Expand Down
Expand Up @@ -7,9 +7,8 @@ import {
TableColumnVisibility,
Toolbar,
} from '@devexpress/dx-react-grid-<%&themeName%>';
import {
generateRows,
} from '../../../demo-data/generator';

import { generateRows } from '../../../demo-data/generator';

export default class Demo extends React.PureComponent {
constructor(props) {
Expand Down
Expand Up @@ -7,9 +7,8 @@ import {
TableColumnVisibility,
Toolbar,
} from '@devexpress/dx-react-grid-<%&themeName%>';
import {
generateRows,
} from '../../../demo-data/generator';

import { generateRows } from '../../../demo-data/generator';

export default class Demo extends React.PureComponent {
constructor(props) {
Expand Down
Expand Up @@ -7,9 +7,8 @@ import {
TableColumnVisibility,
Toolbar,
} from '@devexpress/dx-react-grid-<%&themeName%>';
import {
generateRows,
} from '../../../demo-data/generator';

import { generateRows } from '../../../demo-data/generator';

export default class Demo extends React.PureComponent {
constructor(props) {
Expand Down
Expand Up @@ -7,9 +7,7 @@ import {
TableColumnReordering,
} from '@devexpress/dx-react-grid-<%&themeName%>';

import {
generateRows,
} from '../../../demo-data/generator';
import { generateRows } from '../../../demo-data/generator';

export default class Demo extends React.PureComponent {
constructor(props) {
Expand Down

0 comments on commit 3c2d58d

Please sign in to comment.