You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're using SystemJS as your module loader, your configuration for the angular-material
18
+
packages should look like:
19
+
```js
20
+
// The core package is required as a peerDependency for other components.
21
+
'@angular2-material/core': {
22
+
format:'cjs',
23
+
defaultExtension:'js',
24
+
main:'core.js'
25
+
},
26
+
'@angular2-material/checkbox': {
27
+
format:'cjs',
28
+
defaultExtension:'js',
29
+
main:'checkbox.js'
30
+
},
31
+
```
32
+
33
+
During alpha, breaking API and behavior changes will be occurring regularly.
34
+
10
35
Check out our [directory of design documents](https://github.com/angular/material2/wiki/Design-doc-directory) for more insight into our process.
11
36
12
37
We are still getting our CI infrastructure (tests, lint etc.) set up, as well as building out
0 commit comments