├── .gitignore ├── .idea ├── .name ├── angular-next.iml ├── dictionaries │ ├── KG_Chromium.xml │ └── Rob.xml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── libraries │ └── angular_next_node_modules.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml ├── watcherTasks.xml └── webResources.xml ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── 0.0.1 │ ├── angularNext-standalone.js │ └── angularNext.js ├── 0.0.2 │ ├── angularNext-standalone.js │ └── angularNext.js ├── 0.0.3 │ ├── angularNext-standalone.js │ └── angularNext.js ├── angularNext-standalone.js ├── angularNext.js └── es6 │ └── angular2 │ ├── angular2.js │ ├── ng2 │ ├── bootstrap.js │ ├── component.js │ ├── decorator.js │ ├── directive.js │ ├── ngElement.js │ ├── template.js │ └── templateConfig.js │ ├── ngNext │ ├── angular2Adapter.js │ ├── injectNgOne.js │ ├── polyfillPromise.js │ └── registerNg2Directives.js │ └── rtts-assert.js ├── examples ├── color-slider │ ├── bower.json │ ├── build │ │ ├── app.js │ │ ├── components │ │ │ ├── base │ │ │ │ ├── baseComponent.html │ │ │ │ └── baseComponent.js │ │ │ └── colorSettings │ │ │ │ ├── colorSettings.html │ │ │ │ ├── ng1ColorSettings.js │ │ │ │ └── ng2ColorSettings.js │ │ ├── css │ │ │ ├── angular-material.css │ │ │ ├── blue-grey-theme.css │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ └── styles.css │ │ ├── decorators │ │ │ └── backgroundColor.js │ │ ├── index.html │ │ ├── services │ │ │ └── colorUtil.js │ │ └── vendor │ │ │ ├── angular-animate.js │ │ │ ├── angular-aria.js │ │ │ ├── angular-material.js │ │ │ ├── angular.js │ │ │ ├── angularNext-standalone.js │ │ │ └── hammer.js │ ├── gulpfile.js │ ├── package.json │ ├── readme.md │ └── src │ │ ├── app.ats.js │ │ ├── components │ │ ├── base │ │ │ ├── baseComponent.ats.js │ │ │ └── baseComponent.html │ │ └── colorSettings │ │ │ ├── colorSettings.html │ │ │ ├── ng1ColorSettings.js │ │ │ └── ng2ColorSettings.ats.js │ │ ├── css │ │ └── styles.css │ │ ├── decorators │ │ └── backgroundColor.ats.js │ │ ├── index.html │ │ └── services │ │ └── colorUtil.ats.js ├── feature-sandbox │ ├── bower.json │ ├── gulpfile.js │ ├── package.json │ └── src │ │ ├── app.js │ │ ├── childComponent.js │ │ ├── colorDec.js │ │ ├── helloComponent.js │ │ ├── index.html │ │ ├── myChildService.js │ │ └── myService.js ├── hello-jspm │ ├── README.md │ ├── app.js │ ├── config.js │ ├── index.html │ ├── jspm_packages │ │ ├── .loaderversions │ │ ├── es6-module-loader.js │ │ ├── es6-module-loader.js.map │ │ ├── es6-module-loader.src.js │ │ ├── github │ │ │ └── robianmcd │ │ │ │ └── angular-next@0.0.3 │ │ │ │ ├── .jspm-hash │ │ │ │ ├── .jspm.json │ │ │ │ ├── angular2.js │ │ │ │ ├── ng2 │ │ │ │ ├── bootstrap.js │ │ │ │ ├── component.js │ │ │ │ ├── decorator.js │ │ │ │ ├── directive.js │ │ │ │ ├── ngElement.js │ │ │ │ ├── template.js │ │ │ │ └── templateConfig.js │ │ │ │ ├── ngNext │ │ │ │ ├── angular2Adapter.js │ │ │ │ ├── injectNgOne.js │ │ │ │ └── polyfillPromise.js │ │ │ │ └── rtts-assert.js │ │ ├── system.js │ │ ├── system.js.map │ │ ├── system.src.js │ │ ├── traceur-runtime.js │ │ ├── traceur-runtime.js.map │ │ ├── traceur-runtime.src.js │ │ ├── traceur.js │ │ ├── traceur.js.map │ │ └── traceur.src.js │ └── package.json └── hello-world │ ├── README.md │ ├── build │ └── app.js │ ├── index.html │ ├── package.json │ └── src │ └── app.js ├── gulpfile.js ├── karma.conf.js ├── lib └── systemjs-register │ ├── extension-register.js │ └── initialize-register.js ├── package.json ├── src └── angular2 │ ├── angular2.js │ ├── ng2 │ ├── bootstrap.js │ ├── component.js │ ├── decorator.js │ ├── directive.js │ ├── ngElement.js │ └── template.js │ ├── ngNext │ ├── angular2Adapter.js │ ├── injectNgOne.js │ ├── polyfillPromise.js │ └── registerNg2Directives.js │ └── rtts-assert.js ├── test └── ngNext │ └── angular2AdapterTest.js └── testMain.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | angular-next -------------------------------------------------------------------------------- /.idea/angular-next.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/angular-next.iml -------------------------------------------------------------------------------- /.idea/dictionaries/KG_Chromium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/dictionaries/KG_Chromium.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Rob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/dictionaries/Rob.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/angular_next_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/libraries/angular_next_node_modules.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/webResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.idea/webResources.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/bower.json -------------------------------------------------------------------------------- /dist/0.0.1/angularNext-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/0.0.1/angularNext-standalone.js -------------------------------------------------------------------------------- /dist/0.0.1/angularNext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/0.0.1/angularNext.js -------------------------------------------------------------------------------- /dist/0.0.2/angularNext-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/0.0.2/angularNext-standalone.js -------------------------------------------------------------------------------- /dist/0.0.2/angularNext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/0.0.2/angularNext.js -------------------------------------------------------------------------------- /dist/0.0.3/angularNext-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/0.0.3/angularNext-standalone.js -------------------------------------------------------------------------------- /dist/0.0.3/angularNext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/0.0.3/angularNext.js -------------------------------------------------------------------------------- /dist/angularNext-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/angularNext-standalone.js -------------------------------------------------------------------------------- /dist/angularNext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/angularNext.js -------------------------------------------------------------------------------- /dist/es6/angular2/angular2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/angular2.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/bootstrap.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/component.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/decorator.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/directive.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/ngElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/ngElement.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/template.js -------------------------------------------------------------------------------- /dist/es6/angular2/ng2/templateConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ng2/templateConfig.js -------------------------------------------------------------------------------- /dist/es6/angular2/ngNext/angular2Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ngNext/angular2Adapter.js -------------------------------------------------------------------------------- /dist/es6/angular2/ngNext/injectNgOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ngNext/injectNgOne.js -------------------------------------------------------------------------------- /dist/es6/angular2/ngNext/polyfillPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ngNext/polyfillPromise.js -------------------------------------------------------------------------------- /dist/es6/angular2/ngNext/registerNg2Directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/ngNext/registerNg2Directives.js -------------------------------------------------------------------------------- /dist/es6/angular2/rtts-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/dist/es6/angular2/rtts-assert.js -------------------------------------------------------------------------------- /examples/color-slider/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/bower.json -------------------------------------------------------------------------------- /examples/color-slider/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/app.js -------------------------------------------------------------------------------- /examples/color-slider/build/components/base/baseComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/components/base/baseComponent.html -------------------------------------------------------------------------------- /examples/color-slider/build/components/base/baseComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/components/base/baseComponent.js -------------------------------------------------------------------------------- /examples/color-slider/build/components/colorSettings/colorSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/components/colorSettings/colorSettings.html -------------------------------------------------------------------------------- /examples/color-slider/build/components/colorSettings/ng1ColorSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/components/colorSettings/ng1ColorSettings.js -------------------------------------------------------------------------------- /examples/color-slider/build/components/colorSettings/ng2ColorSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/components/colorSettings/ng2ColorSettings.js -------------------------------------------------------------------------------- /examples/color-slider/build/css/angular-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/css/angular-material.css -------------------------------------------------------------------------------- /examples/color-slider/build/css/blue-grey-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/css/blue-grey-theme.css -------------------------------------------------------------------------------- /examples/color-slider/build/css/css/styles.css: -------------------------------------------------------------------------------- 1 | .container { 2 | width:600px;margin:auto; 3 | } -------------------------------------------------------------------------------- /examples/color-slider/build/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/css/styles.css -------------------------------------------------------------------------------- /examples/color-slider/build/decorators/backgroundColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/decorators/backgroundColor.js -------------------------------------------------------------------------------- /examples/color-slider/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/index.html -------------------------------------------------------------------------------- /examples/color-slider/build/services/colorUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/services/colorUtil.js -------------------------------------------------------------------------------- /examples/color-slider/build/vendor/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/vendor/angular-animate.js -------------------------------------------------------------------------------- /examples/color-slider/build/vendor/angular-aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/vendor/angular-aria.js -------------------------------------------------------------------------------- /examples/color-slider/build/vendor/angular-material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/vendor/angular-material.js -------------------------------------------------------------------------------- /examples/color-slider/build/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/vendor/angular.js -------------------------------------------------------------------------------- /examples/color-slider/build/vendor/angularNext-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/vendor/angularNext-standalone.js -------------------------------------------------------------------------------- /examples/color-slider/build/vendor/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/build/vendor/hammer.js -------------------------------------------------------------------------------- /examples/color-slider/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/gulpfile.js -------------------------------------------------------------------------------- /examples/color-slider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/package.json -------------------------------------------------------------------------------- /examples/color-slider/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/readme.md -------------------------------------------------------------------------------- /examples/color-slider/src/app.ats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/app.ats.js -------------------------------------------------------------------------------- /examples/color-slider/src/components/base/baseComponent.ats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/components/base/baseComponent.ats.js -------------------------------------------------------------------------------- /examples/color-slider/src/components/base/baseComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/components/base/baseComponent.html -------------------------------------------------------------------------------- /examples/color-slider/src/components/colorSettings/colorSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/components/colorSettings/colorSettings.html -------------------------------------------------------------------------------- /examples/color-slider/src/components/colorSettings/ng1ColorSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/components/colorSettings/ng1ColorSettings.js -------------------------------------------------------------------------------- /examples/color-slider/src/components/colorSettings/ng2ColorSettings.ats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/components/colorSettings/ng2ColorSettings.ats.js -------------------------------------------------------------------------------- /examples/color-slider/src/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/css/styles.css -------------------------------------------------------------------------------- /examples/color-slider/src/decorators/backgroundColor.ats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/decorators/backgroundColor.ats.js -------------------------------------------------------------------------------- /examples/color-slider/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/index.html -------------------------------------------------------------------------------- /examples/color-slider/src/services/colorUtil.ats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/color-slider/src/services/colorUtil.ats.js -------------------------------------------------------------------------------- /examples/feature-sandbox/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/bower.json -------------------------------------------------------------------------------- /examples/feature-sandbox/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/gulpfile.js -------------------------------------------------------------------------------- /examples/feature-sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/package.json -------------------------------------------------------------------------------- /examples/feature-sandbox/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/app.js -------------------------------------------------------------------------------- /examples/feature-sandbox/src/childComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/childComponent.js -------------------------------------------------------------------------------- /examples/feature-sandbox/src/colorDec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/colorDec.js -------------------------------------------------------------------------------- /examples/feature-sandbox/src/helloComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/helloComponent.js -------------------------------------------------------------------------------- /examples/feature-sandbox/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/index.html -------------------------------------------------------------------------------- /examples/feature-sandbox/src/myChildService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/myChildService.js -------------------------------------------------------------------------------- /examples/feature-sandbox/src/myService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/feature-sandbox/src/myService.js -------------------------------------------------------------------------------- /examples/hello-jspm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/README.md -------------------------------------------------------------------------------- /examples/hello-jspm/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/app.js -------------------------------------------------------------------------------- /examples/hello-jspm/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/config.js -------------------------------------------------------------------------------- /examples/hello-jspm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/index.html -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/.loaderversions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/.loaderversions -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/es6-module-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/es6-module-loader.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/es6-module-loader.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/es6-module-loader.js.map -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/es6-module-loader.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/es6-module-loader.src.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/.jspm-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/.jspm-hash -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/.jspm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/.jspm.json -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/angular2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/angular2.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/bootstrap.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/component.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/decorator.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/directive.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/ngElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/ngElement.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/template.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/templateConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ng2/templateConfig.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ngNext/angular2Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ngNext/angular2Adapter.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ngNext/injectNgOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ngNext/injectNgOne.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ngNext/polyfillPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/ngNext/polyfillPromise.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/rtts-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/github/robianmcd/angular-next@0.0.3/rtts-assert.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/system.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/system.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/system.js.map -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/system.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/system.src.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/traceur-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/traceur-runtime.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/traceur-runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/traceur-runtime.js.map -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/traceur-runtime.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/traceur-runtime.src.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/traceur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/traceur.js -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/traceur.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/traceur.js.map -------------------------------------------------------------------------------- /examples/hello-jspm/jspm_packages/traceur.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/jspm_packages/traceur.src.js -------------------------------------------------------------------------------- /examples/hello-jspm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-jspm/package.json -------------------------------------------------------------------------------- /examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-world/README.md -------------------------------------------------------------------------------- /examples/hello-world/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-world/build/app.js -------------------------------------------------------------------------------- /examples/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-world/index.html -------------------------------------------------------------------------------- /examples/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-world/package.json -------------------------------------------------------------------------------- /examples/hello-world/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/examples/hello-world/src/app.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/systemjs-register/extension-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/lib/systemjs-register/extension-register.js -------------------------------------------------------------------------------- /lib/systemjs-register/initialize-register.js: -------------------------------------------------------------------------------- 1 | register(System); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/package.json -------------------------------------------------------------------------------- /src/angular2/angular2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/angular2.js -------------------------------------------------------------------------------- /src/angular2/ng2/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ng2/bootstrap.js -------------------------------------------------------------------------------- /src/angular2/ng2/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ng2/component.js -------------------------------------------------------------------------------- /src/angular2/ng2/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ng2/decorator.js -------------------------------------------------------------------------------- /src/angular2/ng2/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ng2/directive.js -------------------------------------------------------------------------------- /src/angular2/ng2/ngElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ng2/ngElement.js -------------------------------------------------------------------------------- /src/angular2/ng2/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ng2/template.js -------------------------------------------------------------------------------- /src/angular2/ngNext/angular2Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ngNext/angular2Adapter.js -------------------------------------------------------------------------------- /src/angular2/ngNext/injectNgOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ngNext/injectNgOne.js -------------------------------------------------------------------------------- /src/angular2/ngNext/polyfillPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ngNext/polyfillPromise.js -------------------------------------------------------------------------------- /src/angular2/ngNext/registerNg2Directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/ngNext/registerNg2Directives.js -------------------------------------------------------------------------------- /src/angular2/rtts-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/src/angular2/rtts-assert.js -------------------------------------------------------------------------------- /test/ngNext/angular2AdapterTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/test/ngNext/angular2AdapterTest.js -------------------------------------------------------------------------------- /testMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robianmcd/angular-next/HEAD/testMain.js --------------------------------------------------------------------------------