diff --git a/README.md b/README.md index a107901..281be95 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index 3334ad1..f984f9c 100644 --- a/package.json +++ b/package.json @@ -14,11 +14,9 @@ "author": "Kent C. Dodds (http://kentcdodds.com/)", "license": "MIT", "dependencies": { - "path-here": "1.1.0", "webpack-combine-loaders": "2.0.0" }, "bundledDependencies": [ - "path-here", "webpack-combine-loaders" ], "devDependencies": { diff --git a/src/index.js b/src/index.js index db2265c..5a79395 100644 --- a/src/index.js +++ b/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) */ diff --git a/src/index.test.js b/src/index.test.js index b70e6ae..21457db 100644 --- a/src/index.test.js +++ b/src/index.test.js @@ -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', ]