Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README to remove references to bower_components. #65

Merged
merged 1 commit into from
Jan 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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