Skip to content

Commit

Permalink
chore: fix invalid path to umd bundle (#2368)
Browse files Browse the repository at this point in the history
* chore: fix invalid path to umd bundle

* Fixes the invalid path to the `bundle` in releases.

* Fix path in getting-started as well.
  • Loading branch information
devversion authored and jelbourn committed Dec 23, 2016
1 parent f544602 commit d286e6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ System.config({
// existing configuration options
map: {
...,
'@angular/material': 'npm:@angular/material/material.umd.js'
'@angular/material': 'npm:@angular/material/bundles/material.umd.js'
}
});
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@angular/material",
"version": "2.0.0-beta.0",
"description": "Angular 2 Material",
"main": "./material.umd.js",
"main": "./bundles/material.umd.js",
"module": "./index.js",
"typings": "./index.d.ts",
"repository": {
Expand Down

0 comments on commit d286e6d

Please sign in to comment.