Skip to content

Commit

Permalink
Update per-module markdown table in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Apr 23, 2018
1 parent d05e966 commit 279aba9
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `import { deprecateFunc } from '@ember/application/deprecations';` | `Ember.deprecateFunc` |
| `import GlobalsResolver from '@ember/application/globals-resolver';` | `Ember.DefaultResolver` |
| `import ApplicationInstance from '@ember/application/instance';` | `Ember.ApplicationInstance` |
| `import Namespace from '@ember/application/namespace';` | `Ember.Namespace` |
| `import Resolver from '@ember/application/resolver';` | `Ember.Resolver` |

#### `@ember/array`
Expand All @@ -224,6 +225,12 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `import MutableArray from '@ember/array/mutable';` | `Ember.MutableArray` |
| `import ArrayProxy from '@ember/array/proxy';` | `Ember.ArrayProxy` |

#### `@ember/canary-features`
| Module | Global |
| --- | --- |
| `import { FEATURES } from '@ember/canary-features';` | `Ember.FEATURES` |
| `import { isEnabled } from '@ember/canary-features';` | `Ember.FEATURES.isEnabled` |

#### `@ember/component`
| Module | Global |
| --- | --- |
Expand Down Expand Up @@ -403,12 +410,23 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `import { dasherize } from '@ember/string';` | `Ember.String.dasherize` |
| `import { decamelize } from '@ember/string';` | `Ember.String.decamelize` |
| `import { fmt } from '@ember/string';` | `Ember.String.fmt` |
| `import { htmlSafe } from '@ember/string';` | `Ember.String.htmlSafe` |
| `import { isHTMLSafe } from '@ember/string';` | `Ember.String.isHTMLSafe` |
| `import { loc } from '@ember/string';` | `Ember.String.loc` |
| `import { underscore } from '@ember/string';` | `Ember.String.underscore` |
| `import { w } from '@ember/string';` | `Ember.String.w` |

#### `@ember/template`
| Module | Global |
| --- | --- |
| `import { htmlSafe } from '@ember/template';` | `Ember.String.htmlSafe` |
| `import { isHTMLSafe } from '@ember/template';` | `Ember.String.isHTMLSafe` |

#### `@ember/template-compilation`
| Module | Global |
| --- | --- |
| `import { compileTemplate } from '@ember/template-compilation';` | `Ember.HTMLBars.compile` |
| `import { precompileTemplate } from '@ember/template-compilation';` | `Ember.HTMLBars.precompile` |
| `import { wrapTemplate } from '@ember/template-compilation';` | `Ember.HTMLBars.template` |

#### `@ember/test`
| Module | Global |
| --- | --- |
Expand All @@ -431,6 +449,11 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `import { tryInvoke } from '@ember/utils';` | `Ember.tryInvoke` |
| `import { typeOf } from '@ember/utils';` | `Ember.typeOf` |

#### `@ember/version`
| Module | Global |
| --- | --- |
| `import { VERSION } from '@ember/version';` | `Ember.VERSION` |

#### `jquery`
| Module | Global |
| --- | --- |
Expand Down

0 comments on commit 279aba9

Please sign in to comment.