Skip to content

Commit

Permalink
fix(dependencies): Update css-mixins to 2.0.0, and all over dependenc…
Browse files Browse the repository at this point in the history
…ies to latest
  • Loading branch information
Dimitri Kopriwa committed Dec 20, 2018
1 parent 6259b08 commit 3964869
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 28 deletions.
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,22 +115,22 @@
}
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@bootstrap-styled/documentation": "^1.1.1",
"@rollup-umd/documentation": "^1.2.0",
"@babel/preset-env": "^7.2.3",
"@bootstrap-styled/documentation": "^1.2.0",
"@rollup-umd/documentation": "^1.3.1",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.5",
"@semantic-release/git": "^7.0.6",
"@semantic-release/github": "^5.2.6",
"@semantic-release/npm": "^5.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
Expand All @@ -140,24 +140,24 @@
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-dynamic-import-node": "^2.2.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"immutable": "^4.0.0-rc.12",
"jest-cli": "^23.6.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^8.1.0",
"pre-commit": "^1.2.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-styleguidist": "^8.0.6",
"rimraf": "^2.6.2",
"rollup": "^0.68.0",
"rollup": "^0.68.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.2.0",
Expand All @@ -169,10 +169,10 @@
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-visualizer": "^0.9.2",
"rollup-watch": "^4.3.1",
"semantic-release": "^15.13.0",
"semantic-release": "^15.13.1",
"sinon": "^7.2.2",
"toctoc": "^0.3.2",
"webpack": "^4.27.1"
"webpack": "^4.28.1"
},
"jest": {
"roots": [
Expand Down Expand Up @@ -221,8 +221,8 @@
"build:readme"
],
"dependencies": {
"@bootstrap-styled/css-mixins": "1.3.0",
"@bootstrap-styled/utils": "^1.7.0"
"@bootstrap-styled/css-mixins": "2.0.0",
"@bootstrap-styled/utils": "^1.7.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
Expand Down
4 changes: 2 additions & 2 deletions src/tests/display.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ describe('bootstrap display utility', () => {
const css = getDisplayUtilities(defaultProps['$grid-breakpoints']);
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(fromJS({ css }).hashCode()).toEqual(-165333280);
expect(fromJS({ css }).hashCode()).toEqual(-146892677);
});
it('getDisplayUtilities should have arguments', () => {
const css = getDisplayUtilities();
expect(fromJS({ css }).hashCode()).toEqual(-165333280);
expect(fromJS({ css }).hashCode()).toEqual(-146892677);
});
});
4 changes: 2 additions & 2 deletions src/tests/flex.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ describe('bootstrap flex utility', () => {
const css = getFlexUtilities(defaultProps['$grid-breakpoints']);
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(fromJS({ css }).hashCode()).toEqual(255471910);
expect(fromJS({ css }).hashCode()).toEqual(632091713);
});
it('getFlexUtilities should have arguments', () => {
const css = getFlexUtilities();
expect(fromJS({ css }).hashCode()).toEqual(255471910);
expect(fromJS({ css }).hashCode()).toEqual(632091713);
});
});
4 changes: 2 additions & 2 deletions src/tests/float.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ describe('bootstrap float utility', () => {
const css = getFloatUtilities(defaultProps['$grid-breakpoints']);
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(fromJS({ css }).hashCode()).toEqual(-111904855);
expect(fromJS({ css }).hashCode()).toEqual(587768878);
});
it('getFloatUtilities should have arguments', () => {
const css = getFloatUtilities();
expect(fromJS({ css }).hashCode()).toEqual(-111904855);
expect(fromJS({ css }).hashCode()).toEqual(587768878);
});
});
4 changes: 2 additions & 2 deletions src/tests/spacing.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ describe('bootstrap spacing utility', () => {
);
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(fromJS({ css }).hashCode()).toEqual(1035143239);
expect(fromJS({ css }).hashCode()).toEqual(-924995996);
});
it('getSpacingUtilities should have arguments', () => {
const css = getSpacingUtilities();
expect(fromJS({ css }).hashCode()).toEqual(1035143239);
expect(fromJS({ css }).hashCode()).toEqual(-924995996);
});
});
4 changes: 2 additions & 2 deletions src/tests/text.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ describe('bootstrap text utility', () => {
);
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(fromJS({ css }).hashCode()).toEqual(-274573150);
expect(fromJS({ css }).hashCode()).toEqual(973719637);
});
it('getTextUtilities should have arguments', () => {
const css = getTextUtilities();
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(fromJS({ css }).hashCode()).toEqual(-274573150);
expect(fromJS({ css }).hashCode()).toEqual(973719637);
});
});

0 comments on commit 3964869

Please sign in to comment.