2020-07-21 01:51:30 +00:00
|
|
|
import { getGlobalThis } from '@vue/shared'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is only called in esm-bundler builds.
|
|
|
|
* It is called when a renderer is created, in `baseCreateRenderer` so that
|
|
|
|
* importing runtime-core is side-effects free.
|
|
|
|
*
|
|
|
|
* istanbul-ignore-next
|
|
|
|
*/
|
|
|
|
export function initFeatureFlags() {
|
|
|
|
let needWarn = false
|
|
|
|
|
|
|
|
if (typeof __FEATURE_OPTIONS_API__ !== 'boolean') {
|
|
|
|
needWarn = true
|
|
|
|
getGlobalThis().__VUE_OPTIONS_API__ = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof __FEATURE_PROD_DEVTOOLS__ !== 'boolean') {
|
|
|
|
needWarn = true
|
|
|
|
getGlobalThis().__VUE_PROD_DEVTOOLS__ = false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (__DEV__ && needWarn) {
|
|
|
|
console.warn(
|
|
|
|
`You are running the esm-bundler build of Vue. It is recommended to ` +
|
2020-07-21 14:24:51 +00:00
|
|
|
`configure your bundler to explicitly replace feature flag globals ` +
|
|
|
|
`with boolean literals to get proper tree-shaking in the final bundle. ` +
|
|
|
|
`See http://link.vuejs.org/feature-flags for more details.`
|
2020-07-21 01:51:30 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|