Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit d6400f7

Browse files
committed
chore(merge): fix merge conflicts
2 parents bfa234a + 24cb5ca commit d6400f7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

bin/ion-dev.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,9 @@ window.IonicDevServer = {
391391
}
392392
});
393393

394-
this.enableShake();
394+
if (location.href.indexOf('devapp=true') < 0) {
395+
this.enableShake();
396+
}
395397
},
396398

397399
enableShake: function() {

src/util/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export function generateContext(context?: BuildContext): BuildContext {
197197
setProcessEnvVar(Constants.ENV_COMPONENTS_NG_MODULE_PATH, context.componentsNgModulePath);
198198
Logger.debug(`componentsNgModulePath set to ${context.componentsNgModulePath}`);
199199

200-
context.pipesNgModulePath = resolve(getConfigValue(context, '--pipesNgModulePath', null, Constants.ENV_PIPES_NG_MODULE_PATH, Constants.ENV_PIPES_NG_MODULE_PATH.toLowerCase(), join(context.srcDir, 'PIPES', 'pipes.module.ts')));
200+
context.pipesNgModulePath = resolve(getConfigValue(context, '--pipesNgModulePath', null, Constants.ENV_PIPES_NG_MODULE_PATH, Constants.ENV_PIPES_NG_MODULE_PATH.toLowerCase(), join(context.srcDir, 'pipes', 'pipes.module.ts')));
201201
setProcessEnvVar(Constants.ENV_PIPES_NG_MODULE_PATH, context.pipesNgModulePath);
202202
Logger.debug(`pipesNgModulePath set to ${context.pipesNgModulePath}`);
203203

0 commit comments

Comments
 (0)