Created: October 17, 2018
Speaker: Christian Guirreri (@politicochris)
- Show an example of updating (rather than replacing) Generator templates with yaml
- Show an example of webpack modification with the Service Plugin
- Show an example of modifying built-in plugins via promts
- Show an example of registering commands for vue-cli-service and checking for all available commands
- Show an example of the differences between [resolveWebpackConfig() and resolveChainableWebpackConfig()]
- Show a examples of setting up linting
- Show more detail about each of the undocumented options and functions available in the PluginAPI, the GeneratorAPI, PromptModuleAPI and Inquirer.js
- Does
preset.json
need to be in the root of the git repository in order for it to work?- In the case of this repo, the plugin's root folder and
preset.json
is located atvue-cli-3-walkthrough/examples/plugin-development-101/vue-cli-plugin-init-example/
. When runningvue create
with this path, the return is404
:vue create -p github:vuedc/vue-cli-3-walkthrough/examples/plugin-development-101/vue-cli-plugin-init-example my-project
- When adding
--clone
to the above statement, the return isError: 'git clone' failed with status 128
- If the
preset.json
is in the root of the repo, the following works as expected:vue create -p github:vuedc/vue-cli-3-walkthrough my-project
- In the case of this repo, the plugin's root folder and
- Does the download-git-repository package support private BitBucket servers?
- I have not been able to get any of the remote preset functionality to work with our private BitBucket server, either with
vue create
or withdownload-git-repository
so the problem may be with the latter.
- I have not been able to get any of the remote preset functionality to work with our private BitBucket server, either with