Skip to content

Commit

Permalink
Merge pull request #65 from rwjblue/update-readme
Browse files Browse the repository at this point in the history
Update README to remove references to bower_components.
  • Loading branch information
rwjblue committed Jan 20, 2016
2 parents 8e97fe1 + 19929f9 commit 15e6e81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ project in the [babel-enifed-module-formatter plugin](https://github.com/emberjs

It is possible to hook loader to augment or transform the loaded code. `wrapModules` is an optional method on the loader that is called as each module is originally loaded. `wrapModules` must be a function of the form `wrapModules(name, callback)`. The `callback` is the original AMD callback. The return value of `wrapModules` is then used in subsequent requests for `name`

This functionality is useful for instrumenting code, for instance in code coverage libraries.
This functionality is useful for instrumenting code, for instance in code coverage libraries.

```
loader.wrapModules = function(name, callback) {
Expand All @@ -39,21 +39,16 @@ loader.wrapModules = function(name, callback) {

## Tests

To run the test you'll need to have
[testem](https://github.com/airportyh/testem) installed. Install it with `npm
install -g testem`.

_(You'll also have to install the bower components, which you can do by running
`bower install`)_
We use [testem](https://github.com/airportyh/testem) for running our test suite.

You may run them with:
```bash
testem ci
npm test
```

You can also launch testem development mode with:
```bash
testem
npm run test:dev
```

## License
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"testem": "^1.0.0"
},
"scripts": {
"test": "testem ci"
"test": "testem ci",
"test:dev": "testem"
},
"author": "",
"license": "MIT",
Expand Down

0 comments on commit 15e6e81

Please sign in to comment.