From 506e7c19245dbc9eb24b6146fc30af2b2aff1c2f Mon Sep 17 00:00:00 2001 From: tiwuofficial Date: Wed, 4 Dec 2019 16:58:25 +0900 Subject: [PATCH] copy docs/ja/core-plugins/README.md --- docs/ja/core-plugins/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/ja/core-plugins/README.md diff --git a/docs/ja/core-plugins/README.md b/docs/ja/core-plugins/README.md new file mode 100644 index 0000000000..1d62026f55 --- /dev/null +++ b/docs/ja/core-plugins/README.md @@ -0,0 +1,14 @@ +# Plugins + +Vue CLI uses a plugin-based architecture. If you inspect a newly created project's `package.json`, you will find dependencies that start with `@vue/cli-plugin-`. Plugins can modify the internal webpack configuration and inject commands to `vue-cli-service`. Most of the features listed during the project creation process are implemented as plugins. + +This section contains documentation for core Vue CLI plugins: + +- [Babel](babel.md) +- [TypeScript](typescript.md) +- [ESLint](eslint.md) +- [PWA](pwa.md) +- [Jest](unit-jest.md) +- [Mocha](unit-mocha.md) +- [Cypress](e2e-cypress.md) +- [Nightwatch](e2e-nightwatch.md)