Skip to content

Commit

Permalink
Merge pull request #22 from cachilders/dev
Browse files Browse the repository at this point in the history
Noticed a little but nasty bug
  • Loading branch information
cachilders committed Jan 25, 2017
2 parents eac90cf + d1681cc commit 690db71
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 0.6.3 - 2017-1-19
### Changed
- Minor bugfix

## 0.6.2 - 2017-1-9
### Changed
- Improve URL processing to yield more browser-friendly results
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "backpat",
"version": "0.6.2",
"version": "0.6.3",
"description": "A simple tool for high-fiving your tech stack",
"main": "dist/index.js",
"scripts": {
Expand Down
7 changes: 5 additions & 2 deletions src/index.js
@@ -1,11 +1,14 @@
/* @flow */

import { getNpmData, curriedMerge, pickDownloads } from './utilities';
import {
getNpmData,
curriedMerge,
pickDownloads,
filterPrivate } from './utilities';
import {
readPackageJson,
fetchEachDependency,
instantiateDependencies,
filterPrivate,
addNode
} from './helpers';

Expand Down

0 comments on commit 690db71

Please sign in to comment.