You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ npm run build --rollup ./config/rollup.config.js
131
131
| print dependency tree |`ionic_print_original_dependency_tree`|`--printOriginalDependencyTree`|`null`| Set to `true` to print out the original dependency tree calculated during the optimize step |
132
132
| print modified dependency tree |`ionic_print_modified_dependency_tree`|`--printModifiedDependencyTree`|`null`| Set to `true` to print out the modified dependency tree after purging unused modules |
133
133
| print webpack dependency tree |`ionic_print_webpack_dependency_tree`|`--printWebpackDependencyTree`|`null`| Set to `true` to print out a dependency tree after running Webpack |
134
-
| parse deeplink config |`ionic_parse_deeplinks`|`--parseDeepLinks`|`true`| Parses and extracts data from the `@DeepLink` decorator |
134
+
| parse deeplink config |`ionic_parse_deeplinks`|`--parseDeepLinks`|`true`| Parses and extracts data from the `@IonicPage` decorator |
135
135
| experimental manual tree shaking |`ionic_experimental_manual_treeshaking`|`--experimentalManualTreeshaking`|`null`| Set to `true` to purge unused Ionic components/code (Experimental) |
136
136
| experimental purge decorators |`ionic_experimental_purge_decorators`|`--experimentalPurgeDecorators`|`null`| Set to `true` to purge unneeded decorators to improve tree shakeability of code (Experimental) |
137
137
| experimental closure compiler |`ionic_use_experimental_closure`|`--useExperimentalClosure`|`null`| Set to `true` to use closure compiler to minify the final bundle |
constructor(public loadingController: LoadingController, public modalController: ModalController, public navCtrl: NavController, public popoverCtrl: PopoverController) {}
@@ -1138,7 +1138,7 @@ export class PageTwoModule {
1138
1138
import { Component } from '@angular/core';
1139
1139
import { DeepLink, NavController } from 'ionic-angular';
1140
1140
1141
-
@DeepLink({
1141
+
@IonicPage({
1142
1142
segment: 'someSegmentBro',
1143
1143
defaultHistory: ['page-one', 'page-two'],
1144
1144
priority: 'high'
@@ -1244,7 +1244,7 @@ import { Component } from '@angular/core';
1244
1244
import { DeepLink, NavController } from 'ionic-angular';
constructor(public loadingController: LoadingController, public modalController: ModalController, public navCtrl: NavController, public popoverCtrl: PopoverController) {}
@@ -1356,7 +1356,7 @@ export class PageTwoModule {
1356
1356
import { Component } from '@angular/core';
1357
1357
import { DeepLink, NavController } from 'ionic-angular';
0 commit comments