1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- const pluginRE = /^(@vue\/|vue-|@[\w-]+\/vue-)cli-plugin-/
- const scopeRE = /^@[\w-]+\//
- const officialRE = /^@vue\//
- exports.isPlugin = id => pluginRE.test(id)
- exports.isOfficialPlugin = id => exports.isPlugin(id) && officialRE.test(id)
- exports.toShortPluginId = id => id.replace(pluginRE, '')
- exports.resolvePluginId = id => {
- // already full id
- // e.g. vue-cli-plugin-foo, @vue/cli-plugin-foo, @bar/vue-cli-plugin-foo
- if (pluginRE.test(id)) {
- return id
- }
- // scoped short
- // e.g. @vue/foo, @bar/foo
- if (id.charAt(0) === '@') {
- const scopeMatch = id.match(scopeRE)
- if (scopeMatch) {
- const scope = scopeMatch[0]
- const shortId = id.replace(scopeRE, '')
- return `${scope}${scope === '@vue/' ? `` : `vue-`}cli-plugin-${shortId}`
- }
- }
- // default short
- // e.g. foo
- return `vue-cli-plugin-${id}`
- }
- exports.matchesPluginId = (input, full) => {
- const short = full.replace(pluginRE, '')
- return (
- // input is full
- full === input ||
- // input is short without scope
- short === input ||
- // input is short with scope
- short === input.replace(scopeRE, '')
- )
- }
- exports.getPluginLink = id => {
- if (officialRE.test(id)) {
- return `https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-${
- exports.toShortPluginId(id)
- }`
- }
- let pkg = {}
- try {
- pkg = require(`${id}/package.json`)
- } catch (e) {}
- return (
- pkg.homepage ||
- (pkg.repository && pkg.repository.url) ||
- `https://www.npmjs.com/package/${id.replace(`/`, `%2F`)}`
- )
- }
|