Skip to content

Commit

Permalink
fix(here): remove useless path-here
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Remove `here` as an export as it is not useful
  • Loading branch information
Kent C. Dodds committed Jul 19, 2016
1 parent 30e321e commit 78980d0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -115,7 +115,7 @@ module.exports = env => {
## API

See the API Documentation [here][API Docs]. In addition to custom utilities from this package, it comes bundled with
a few other helpful utilities: [`path-here`](https://www.npmjs.com/package/path-here) (exposed as `here`) and [`webpack-combine-loaders`](https://www.npmjs.com/package/webpack-combine-loaders) (exposed as `combineLoaders`).
a few another helpful utility: [`webpack-combine-loaders`](https://www.npmjs.com/package/webpack-combine-loaders) (exposed as `combineLoaders`).

## Contributors

Expand Down
2 changes: 0 additions & 2 deletions package.json
Expand Up @@ -14,11 +14,9 @@
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"path-here": "1.1.0",
"webpack-combine-loaders": "2.0.0"
},
"bundledDependencies": [
"path-here",
"webpack-combine-loaders"
],
"devDependencies": {
Expand Down
4 changes: 0 additions & 4 deletions src/index.js
@@ -1,7 +1,3 @@
/**
* See documentation for the `here` method [here](https://www.npmjs.com/package/path-here)
*/
export {default as here} from 'path-here'
/**
* See documentation for the `combineLoaders` method [here](https://www.npmjs.com/webpack-combine-loaders)
*/
Expand Down
2 changes: 1 addition & 1 deletion src/index.test.js
Expand Up @@ -5,7 +5,7 @@ import * as utils from './'
test('exports all the things we care about', t => {
const allExports = Object.keys(utils)
const expectedExports = [
'here', 'combineLoaders',
'combineLoaders',
'propIf', 'propIfNot',
'removeEmpty', 'getIfUtils',
]
Expand Down

0 comments on commit 78980d0

Please sign in to comment.