-
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(vue-vapor): remove compiler version
- Loading branch information
Showing
7 changed files
with
19 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
// This entry is the "full-build" that includes both the runtime | ||
// and the compiler, and supports on-the-fly compilation of the template option. | ||
import { initDev } from './dev' | ||
import { initCustomFormatter } from '@vue/runtime-dom' | ||
|
||
if (__DEV__) { | ||
initDev() | ||
} | ||
if (__DEV__ && __BROWSER__) { | ||
/* istanbul ignore if */ | ||
if (!__ESM_BUNDLER__) { | ||
console.info( | ||
`You are running a development build of Vue.\n` + | ||
`Make sure to use the production build (*.prod.js) when deploying for production.`, | ||
) | ||
} | ||
|
||
// TODO register compiler | ||
initCustomFormatter() | ||
} | ||
|
||
export { compile } from '@vue/compiler-vapor' | ||
export * from '@vue/runtime-vapor' |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters