refactor: move dom tag config to shared

Otherwise runtime-dom cjs & esm builds will import compiler-dom
This commit is contained in:
Evan You
2019-11-06 15:22:46 -05:00
parent acbbe3298c
commit d7eab51315
5 changed files with 8 additions and 8 deletions

View File

@@ -2,8 +2,9 @@ import { makeMap } from './makeMap'
export { makeMap }
export * from './patchFlags'
export { isGloballyWhitelisted } from './globalsWhitelist'
export { generateCodeFrame } from './codeframe'
export * from './globalsWhitelist'
export * from './codeframe'
export * from './domTagConfig'
export const EMPTY_OBJ: { readonly [key: string]: any } = __DEV__
? Object.freeze({})