GregYankovoy / vue-cli-plugin-bootstrap-vue

vue-cli 3 plugin to add bootstrap-vue
MIT License
34 stars 2 forks source link

package name in vue preset #7

Closed tobiasfeil closed 4 years ago

tobiasfeil commented 4 years ago

I'm trying to create a vue preset that adds this plugin when creating a vue project. In the preset files, the sections of other plugins look like this: "@vue/cli-plugin-unit-jest": {}, However, when I try to add "@vue/cli-plugin-bootstrap-vue": {}, I get an error npm ERR! 404 Not Found - GET https://registry.npmjs.org/@vue%2fcli-plugin-bootstrap-vue - Not found Is this because I specified the wrong name of this package?

GregYankovoy commented 4 years ago

I think since this is not an official vue plugin, you would have to specify this repository rather than "@vue". Try "gregyankovoy/vue-cli-plugin-bootstrap-vue".

tobiasfeil commented 4 years ago

Thanks, I'll try that.