Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): Expose defaults #358

Merged
merged 1 commit into from
Jan 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0-semantically-released",
"description": "Configurable grid and layout engine for React",
"main": "index.js",
"browser": "dist/gymnast.min.js",
"unpkg": "dist/gymnast.min.js",
"homepage": "https://gymnastjs.github.io/gymnast",
"files": [
"package.json",
Expand Down Expand Up @@ -32,13 +32,13 @@
"@storybook/react": "3.2.19",
"all-contributors-cli": "4.10.1",
"babel-cli": "6.26.0",
"babel-eslint": "8.1.0",
"babel-eslint": "8.2.1",
"babel-jest": "22.0.4",
"babel-plugin-flow-react-proptypes": "13.0.0",
"babel-plugin-flow-react-proptypes": "13.0.2",
"babel-plugin-lodash": "3.3.2",
"babel-plugin-macros": "2.0.0",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-preval": "1.6.2",
"babel-plugin-preval": "1.6.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
Expand All @@ -52,43 +52,43 @@
"commitizen": "2.9.6",
"condition-circle": "2.0.1",
"cross-env": "5.1.3",
"css-loader": "0.28.7",
"css-loader": "0.28.8",
"cssnano": "3.10.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.2.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.0",
"eslint": "4.13.1",
"eslint": "4.15.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.40.1",
"eslint-plugin-flowtype": "2.41.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.5.1",
"extract-text-webpack-plugin": "3.0.2",
"find-up": "2.1.0",
"flow-bin": "0.61.0",
"flow-bin": "0.63.1",
"flow-copy-source": "1.2.1",
"html-loader": "0.5.1",
"html-loader": "0.5.4",
"husky": "0.14.3",
"ignore-loader": "0.1.2",
"jest": "22.0.4",
"jest": "22.0.5",
"lint-staged": "6.0.0",
"lodash": "4.17.4",
"markdown-loader": "2.0.1",
"markdown-loader": "2.0.2",
"nightwatch": "0.9.19",
"npm-run-all": "4.1.2",
"picturebook": "1.1.3",
"picturebook": "1.1.7",
"polished": "1.9.0",
"postcss-cli": "4.1.1",
"postcss-cssnext": "3.0.2",
"postcss-discard-comments": "2.0.4",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-for": "2.1.1",
"postcss-import": "11.0.0",
"postcss-loader": "2.0.9",
"postcss-loader": "2.0.10",
"postcss-nesting": "4.2.1",
"prettier": "1.9.2",
"prettier": "1.10.2",
"raw-loader": "0.5.1",
"react": "16.2.0",
"react-dom": "16.2.0",
Expand All @@ -98,11 +98,11 @@
"saucelabs": "1.4.0",
"selenium-standalone": "6.12.0",
"semantic-release": "11.0.2",
"storybook-addon-jsx": "5.1.0",
"storybook-addon-jsx": "5.3.0",
"style-loader": "0.19.1",
"stylelint": "8.4.0",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "2.9.1"
"webpack-bundle-analyzer": "2.9.2"
},
"lint-staged": {
"*.{js,css}": [
Expand Down
4 changes: 3 additions & 1 deletion src/gymnast.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @flow
import './cxs'
import * as _defaults from './defaults'
import * as _utils from './utils'

// Components
Expand All @@ -16,9 +17,10 @@ export { default as asLayout } from './asLayout'
export { default as withResolution } from './withResolution'

// Utils / Dev
export const utils = _utils
export { default as Dev } from './dev'
export { default as log } from './utils/log'
export const defaults = _defaults
export const utils = _utils

// Types
export type {
Expand Down
Loading