chore(dependencies): update lock file for angular demo

This commit is contained in:
Dan Bucholtz
2017-11-22 10:12:42 -06:00
parent 4625783733
commit 1530c9085d
2 changed files with 9 additions and 8 deletions

View File

@ -193,9 +193,9 @@
} }
}, },
"@ionic/angular": { "@ionic/angular": {
"version": "0.0.2-3", "version": "0.0.2-4",
"resolved": "https://registry.npmjs.org/@ionic/angular/-/angular-0.0.2-3.tgz", "resolved": "https://registry.npmjs.org/@ionic/angular/-/angular-0.0.2-4.tgz",
"integrity": "sha512-ICH0/ynQR34IeDhoZM4qIZSnBb2rp7lcfObQ3MiuXTKfnFqsmp7bS/eV/v5Mqg8dqHyr0eYfPzYxZ8Cd1qh9Lw==" "integrity": "sha512-XF1MuyjKEwWjLyl0VBeAbMkXsPgqbRxRhtzHLgG7DPm7XdvtaZEOiMlTLOt8BTrd+/oOyB/XYF/9ltE6ZxdwEg=="
}, },
"@ionic/core": { "@ionic/core": {
"version": "0.0.2-25", "version": "0.0.2-25",
@ -2726,9 +2726,9 @@
"dev": true "dev": true
}, },
"estree-walker": { "estree-walker": {
"version": "0.5.0", "version": "0.5.1",
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.5.0.tgz", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.5.1.tgz",
"integrity": "sha512-/bEAy+yKAZQrEWUhGmS3H9XpGqSDBtRzX0I2PgMw9kA2n1jN22uV5B5p7MFdZdvWdXCRJztXAfx6ZeRfgkEETg==", "integrity": "sha512-7HgCgz1axW7w5aOvgOQkoR1RMBkllygJrssU3BvymKQ95lxXYv6Pon17fBRDm9qhkvXZGijOULoSF9ShOk/ZLg==",
"dev": true "dev": true
}, },
"esutils": { "esutils": {
@ -8644,7 +8644,7 @@
"dev": true, "dev": true,
"requires": { "requires": {
"acorn": "5.2.1", "acorn": "5.2.1",
"estree-walker": "0.5.0", "estree-walker": "0.5.1",
"magic-string": "0.22.4", "magic-string": "0.22.4",
"resolve": "1.5.0", "resolve": "1.5.0",
"rollup-pluginutils": "2.0.1" "rollup-pluginutils": "2.0.1"

View File

@ -4,6 +4,7 @@ import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module'; import { AppRoutingModule } from './app-routing.module';
import { AlertController } from '@ionic/angular';
@NgModule({ @NgModule({
declarations: [AppComponent], declarations: [AppComponent],
@ -12,7 +13,7 @@ import { AppRoutingModule } from './app-routing.module';
BrowserModule, BrowserModule,
], ],
providers: [ providers: [
// AlertController AlertController
], ],
bootstrap: [AppComponent], bootstrap: [AppComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]