Skip to content

Commit d286e6d

Browse files
devversionjelbourn
authored andcommitted
chore: fix invalid path to umd bundle (#2368)
* chore: fix invalid path to umd bundle * Fixes the invalid path to the `bundle` in releases. * Fix path in getting-started as well.
1 parent f544602 commit d286e6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

guides/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ System.config({
8181
// existing configuration options
8282
map: {
8383
...,
84-
'@angular/material': 'npm:@angular/material/material.umd.js'
84+
'@angular/material': 'npm:@angular/material/bundles/material.umd.js'
8585
}
8686
});
8787
```

src/lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@angular/material",
33
"version": "2.0.0-beta.0",
44
"description": "Angular 2 Material",
5-
"main": "./material.umd.js",
5+
"main": "./bundles/material.umd.js",
66
"module": "./index.js",
77
"typings": "./index.d.ts",
88
"repository": {

0 commit comments

Comments
 (0)