diff --git a/.gitignore b/.gitignore index 370a6eddbc..6e7a5edfb7 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ packages/vue-server-renderer/server-plugin.js packages/vue-server-renderer/client-plugin.js packages/vue-template-compiler/build.js .vscode +dist diff --git a/dist/README.md b/dist/README.md deleted file mode 100644 index 19386ecf31..0000000000 --- a/dist/README.md +++ /dev/null @@ -1,122 +0,0 @@ -## Explanation of Build Files - -| | UMD | CommonJS | ES Module | -| --- | --- | --- | --- | -| **Full** | vue.js | vue.common.js | vue.esm.js | -| **Runtime-only** | vue.runtime.js | vue.runtime.common.js | vue.runtime.esm.js | -| **Full (production)** | vue.min.js | | | -| **Runtime-only (production)** | vue.runtime.min.js | | | - -### Terms - -- **Full**: builds that contain both the compiler and the runtime. - -- **Compiler**: code that is responsible for compiling template strings into JavaScript render functions. - -- **Runtime**: code that is responsible for creating Vue instances, rendering and patching virtual DOM, etc. Basically everything minus the compiler. - -- **[UMD](https://github.com/umdjs/umd)**: UMD builds can be used directly in the browser via a `