- This package is no longer supported from Atmosphere, and will be installed from NPM from Meteor 1.3 and up.
- Removed
bootstrap
module (angular2-meteor/bootstrap
) in favor of the original Angular 2.0 bootstrap's. - Removed
packages/*
- they will be moved into a separated NPM modules in the future. - Imports location will be defined as NPM imports:
import {SomePackage} from 'angular2-meteor/cursor_handlers';
- Removed the need for
SystemJS
, now uses Meteor's ES6 imports that depends on CommonJS.
- Build process now use Webpack instead of Meteor build tool.
- Tests now executed inside a Meteor context which means that there is a meteor app that uses the actual code, because Angular2-Meteor now does not depends of Meteor packages system (Atmosphere) and uses NPM instead.
Angular 2 upgraded to the first beta version.
Angular 2 upgraded to the last version.
- In the latest releases of Angular 2 (alpha-50 and up)
angular2/angular2
namespace were devided into several new ones, mainly,angular2/core
andangular2/common
- The dash symbol were removed in the selectors of main directives, i.e., instead of
ng-if
you should usengIf
now
For more information about the latest API, please, refer to the official docs.
In order to get new Angular 2 definition files, you'll need to remove typings\angular2
folder and typings\angular2.d.ts
file to let
the package install updated version.