Skip to content

Commit 1273665

Browse files
authored
Merge pull request #63 from leifwells/chore/lw-update-ionic-angular-3.6.0
Chore/lw update ionic angular 3.6.0
2 parents fc220f4 + 575aef4 commit 1273665

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

ionic.config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "ionic-unit-testing-example",
33
"app_id": "",
4-
"type": "ionic-angular"
4+
"type": "ionic-angular",
5+
"integrations": {}
56
}

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
"@angular/http": "4.1.3",
2424
"@angular/platform-browser": "4.1.3",
2525
"@angular/platform-browser-dynamic": "4.1.3",
26-
"@ionic-native/core": "3.13.1",
27-
"@ionic-native/splash-screen": "3.13.1",
28-
"@ionic-native/status-bar": "3.13.1",
26+
"@ionic-native/core": "3.12.1",
27+
"@ionic-native/splash-screen": "3.12.1",
28+
"@ionic-native/status-bar": "3.12.1",
2929
"@ionic/storage": "2.0.1",
30-
"ionic-angular": "3.5.0",
30+
"ionic-angular": "3.6.0",
3131
"ionicons": "3.0.0",
3232
"rxjs": "5.4.0",
3333
"sw-toolbox": "3.6.0",
3434
"zone.js": "0.8.12"
3535
},
3636
"devDependencies": {
37-
"@ionic/app-scripts": "1.3.12",
38-
"@ionic/cli-plugin-ionic-angular": "1.3.1",
37+
"@angular/cli": "1.1.2",
38+
"@ionic/app-scripts": "2.1.3",
3939
"@types/jasmine": "^2.5.41",
4040
"@types/node": "^7.0.8",
4141
"angular2-template-loader": "^0.6.2",
@@ -52,8 +52,8 @@
5252
"protractor": "^5.1.1",
5353
"ts-loader": "^2.0.3",
5454
"ts-node": "^3.0.2",
55-
"typescript": "2.3.3"
55+
"typescript": "2.3.4"
5656
},
57-
"version": "0.0.1",
57+
"version": "0.0.4",
5858
"description": "An Ionic project"
5959
}

src/index.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
1111
<link rel="manifest" href="manifest.json">
1212
<meta name="theme-color" content="#4e8ef7">
13-
13+
1414
<!-- cordova.js required for cordova apps -->
1515
<script src="cordova.js"></script>
1616

@@ -19,7 +19,7 @@
1919
if ('serviceWorker' in navigator) {
2020
navigator.serviceWorker.register('service-worker.js')
2121
.then(() => console.log('service worker installed'))
22-
.catch(err => console.log('Error', err));
22+
.catch(err => console.error('Error', err));
2323
}
2424
</script>-->
2525

@@ -34,7 +34,11 @@
3434
<!-- The polyfills js is generated during the build process -->
3535
<script src="build/polyfills.js"></script>
3636

37-
<!-- The bundle js is generated during the build process -->
37+
<!-- The vendor js is generated during the build process
38+
It contains all of the dependencies in node_modules -->
39+
<script src="build/vendor.js"></script>
40+
41+
<!-- The main bundle js is generated during the build process -->
3842
<script src="build/main.js"></script>
3943

4044
</body>

typings/cordova-typings.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
/// <reference path="../.vscode/typings/cordova-ionic/plugins/keyboard.d.ts"/>
3+
/// <reference path="../.vscode/typings/jquery/jquery.d.ts"/>

0 commit comments

Comments
 (0)