Compare commits

..

3 Commits

Author SHA1 Message Date
Manu Mtz.-Almeida
95fb594fe2 4.0.0-alpha.6 2018-05-10 19:41:15 +02:00
Manu Mtz.-Almeida
b9ae49313d chore(): update to latest stencil 2018-05-10 19:36:37 +02:00
Manu Mtz.-Almeida
714f4a658d fix(angular): aot 2018-05-10 18:40:56 +02:00
7 changed files with 27 additions and 24 deletions

View File

@@ -1,3 +1,13 @@
<a name="4.0.0-alpha.6"></a>
# [4.0.0-alpha.6](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.5...v4.0.0-alpha.6) (2018-05-10)
### Bug Fixes
* **angular:** aot ([714f4a6](https://github.com/ionic-team/ionic/commit/714f4a6))
<a name="4.0.0-alpha.5"></a>
# [4.0.0-alpha.5](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.4...v4.0.0-alpha.5) (2018-05-10)

View File

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "4.0.0-alpha.5",
"version": "4.0.0-alpha.6",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@@ -39,24 +39,24 @@
"dist/"
],
"dependencies": {
"@ionic/core": "4.0.0-alpha.5"
"@ionic/core": "4.0.0-alpha.6"
},
"devDependencies": {
"@angular/common": "^6.0.0-rc.3",
"@angular/compiler": "^6.0.0-rc.3",
"@angular/compiler-cli": "^6.0.0-rc.3",
"@angular/core": "^6.0.0-rc.3",
"@angular/forms": "^6.0.0-rc.3",
"@angular/platform-browser": "^6.0.0-rc.3",
"@angular/platform-browser-dynamic": "^6.0.0-rc.3",
"@angular/router": "^6.0.0-rc.3",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/router": "^6.0.0",
"chalk": "^2.3.2",
"execa": "^0.10.0",
"fs-extra": "^5.0.0",
"glob": "7.1.2",
"inquirer": "^5.2.0",
"listr": "^0.13.0",
"rxjs": "^6.0.0-terrific-rc.3",
"rxjs": "^6.0.0",
"semver": "^5.5.0",
"tslint": "^5.8.0",
"tslint-ionic-rules": "0.0.14",

View File

@@ -4,7 +4,6 @@ import { CommonModule } from '@angular/common';
import * as c from './directives';
import * as d from './directives/proxies';
import * as p from './providers';
import { setupConfig } from '@ionic/core';
const DECLARATIONS = [
// proxies
@@ -129,17 +128,11 @@ const PROVIDERS = [
imports: [CommonModule]
})
export class IonicModule {
static forRoot(config?: { [key: string]: any }): ModuleWithProviders {
static forRoot(_config?: { [key: string]: any }): ModuleWithProviders {
return {
ngModule: IonicModule,
providers: [
...PROVIDERS,
{ provide: p.ConfigToken, useValue: config },
{
provide: p.Config,
useFactory: setupConfig,
deps: [p.ConfigToken, p.Platform]
}
]
};
}

View File

@@ -20,7 +20,7 @@ The Ionic Core package contains the Web Components that make up the reusable UI
Easiest way to start using Ionic Core is by adding a script tag to the CDN:
<script src="https://unpkg.com/@ionic/core@4.0.0-alpha.5/dist/ionic.js"></script>
<script src="https://unpkg.com/@ionic/core@4.0.0-alpha.6/dist/ionic.js"></script>
Any Ionic component added to the webpage will automatically load. This includes writing the component tag directly in HTML, or using JavaScript such as `document.createElement('ion-toggle')`.

View File

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "4.0.0-alpha.5",
"version": "4.0.0-alpha.6",
"description": "Base components for Ionic",
"keywords": [
"ionic",
@@ -25,7 +25,7 @@
"ionicons": "4.0.0-19"
},
"devDependencies": {
"@stencil/core": "0.8.1",
"@stencil/core": "0.8.2",
"@stencil/dev-server": "latest",
"@stencil/sass": "0.0.3",
"@stencil/utils": "latest",