Skip to content

Commit 18582fc

Browse files
authored
Merge pull request #3 from trentmwillis/minor-stuff
Minor cleanup stuff
2 parents 8fa9418 + 8da3db0 commit 18582fc

File tree

5 files changed

+4
-15
lines changed

5 files changed

+4
-15
lines changed

.bowerrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ You will need the following things properly installed on your computer.
99

1010
* [Git](https://git-scm.com/)
1111
* [Node.js](https://nodejs.org/) (with NPM)
12-
* [Bower](https://bower.io/)
1312
* [Ember CLI](https://ember-cli.com/)
1413
* [PhantomJS](http://phantomjs.org/)
1514

1615
## Installation
1716

18-
* `git clone <repository-url>` this repository
17+
* `git clone https://github.com/rwjblue/heimdalljs-visualizer.git`
1918
* `cd heimdalljs-visualizer`
20-
* `npm install`
21-
* `bower install`
19+
* `yarn install`
2220

2321
## Running / Development
2422

app/components/basic-tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Ember from 'ember';
22

33
// Import the D3 packages we want to use
44
import { select, event } from 'd3-selection';
5-
import { tree, cluster, hierarchy } from 'd3-hierarchy';
5+
import { cluster, hierarchy } from 'd3-hierarchy';
66
import { zoom, zoomIdentity } from 'd3-zoom';
77

88
const { run, get, inject } = Ember;

bower.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

tests/integration/components/basic-tree-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ test('it renders', function(assert) {
2121
{{/basic-tree}}
2222
`);
2323

24-
assert.equal(this.$().text().trim(), 'template block text');
24+
assert.equal(this.$().text().trim(), '');
2525
});

0 commit comments

Comments
 (0)