Skip to content

Commit

Permalink
Disable non-enabled features
Browse files Browse the repository at this point in the history
  • Loading branch information
kategengler committed Dec 28, 2020
1 parent df3c7a6 commit 397ba02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/@ember/canary-features/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ import { assign } from '@ember/polyfills';
*/

export const DEFAULT_FEATURES = {
EMBER_LIBRARIES_ISREGISTERED: null,
EMBER_IMPROVED_INSTRUMENTATION: null,
EMBER_LIBRARIES_ISREGISTERED: false,
EMBER_IMPROVED_INSTRUMENTATION: false,
EMBER_NAMED_BLOCKS: true,
EMBER_GLIMMER_HELPER_MANAGER: true,
EMBER_GLIMMER_INVOKE_HELPER: true,
EMBER_MODERNIZED_BUILT_IN_COMPONENTS: null,
EMBER_MODERNIZED_BUILT_IN_COMPONENTS: false,
EMBER_STRICT_MODE: true,
EMBER_DYNAMIC_HELPERS_AND_MODIFIERS: null,
EMBER_DYNAMIC_HELPERS_AND_MODIFIERS: false,
};

/**
Expand Down

0 comments on commit 397ba02

Please sign in to comment.