Skip to content

Commit

Permalink
docs(install browser): fix typemoq url
Browse files Browse the repository at this point in the history
  • Loading branch information
florinn committed Nov 29, 2016
1 parent 946bb56 commit 730646c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ import * as TypeMoq from "typemoq";
TypeMoq requires Lodash to run, so make sure to include it in your page along `typemoq.js`:

```html
<script src="https://unpkg.com/lodash/lodash.js"></script>
<script src="https://unpkg.com/typemoq/typemoq.js"></script>
<script src="https://unpkg.com/lodash"></script>
<script src="https://unpkg.com/typemoq"></script>
```

Also in your `tsconfig.json` you need to set the module target as `UMD`:
Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
mocha.setup('bdd');
</script>
<script src="https://unpkg.com/chai/chai.js"></script>
<script src="https://unpkg.com/lodash/lodash.js"></script>
<script src="https://unpkg.com/lodash"></script>
<!-- include source files here... -->
<script src="../.tmp/src/typemoq.js"></script>
<!-- include spec files here... -->
Expand Down

0 comments on commit 730646c

Please sign in to comment.