Skip to content

Commit

Permalink
deps: update rollup to version 0.36.0
Browse files Browse the repository at this point in the history
* chore(package): update rollup to version 0.36.0

https://greenkeeper.io/

* fix: do not export transformKeys as default
  • Loading branch information
greenkeeperio-bot authored and zacharygolba committed Sep 20, 2016
1 parent 4d35d59 commit a11ee86
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"fb-watchman": "1.9.0",
"inflection": "1.10.0",
"ora": "0.3.0",
"rollup": "0.34.13",
"rollup": "0.36.0",
"rollup-plugin-alias": "1.2.0",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-eslint": "3.0.0",
Expand Down
3 changes: 2 additions & 1 deletion src/utils/test/transform-keys.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import { expect } from 'chai';
import { it, describe } from 'mocha';

import transformKeys, {
import {
transformKeys,
camelizeKeys,
dasherizeKeys,
underscoreKeys
Expand Down
2 changes: 1 addition & 1 deletion src/utils/transform-keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import underscore from './underscore';
/**
* @private
*/
export default function transformKeys<T: Object | Array<mixed>>(
export function transformKeys<T: Object | Array<mixed>>(
source: T,
transformer: (key: string) => string,
deep: boolean = false
Expand Down

0 comments on commit a11ee86

Please sign in to comment.