-
Notifications
You must be signed in to change notification settings - Fork 909
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
11 changed files
with
435 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
@commitlint/load/fixtures/extends-plugins/commitlint.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
extends: [], | ||
plugins: ['example', '@scope/example'] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import path from 'path'; | ||
import chalk from 'chalk'; | ||
import {normalizePackageName, getShorthandName} from './pluginNaming'; | ||
|
||
export default function loadPlugin(plugins, pluginName, debug = false) { | ||
const longName = normalizePackageName(pluginName); | ||
const shortName = getShorthandName(longName); | ||
let plugin = null; | ||
|
||
if (pluginName.match(/\s+/u)) { | ||
const whitespaceError = new Error( | ||
`Whitespace found in plugin name '${pluginName}'` | ||
); | ||
|
||
whitespaceError.messageTemplate = 'whitespace-found'; | ||
whitespaceError.messageData = { | ||
pluginName: longName | ||
}; | ||
throw whitespaceError; | ||
} | ||
|
||
const pluginKey = longName === pluginName ? shortName : pluginName; | ||
|
||
if (!plugins[pluginKey]) { | ||
try { | ||
plugin = require(longName); | ||
} catch (pluginLoadErr) { | ||
try { | ||
// Check whether the plugin exists | ||
require.resolve(longName); | ||
} catch (missingPluginErr) { | ||
// If the plugin can't be resolved, display the missing plugin error (usually a config or install error) | ||
console.error(chalk.red(`Failed to load plugin ${longName}.`)); | ||
missingPluginErr.message = `Failed to load plugin ${pluginName}: ${ | ||
missingPluginErr.message | ||
}`; | ||
missingPluginErr.messageTemplate = 'plugin-missing'; | ||
missingPluginErr.messageData = { | ||
pluginName: longName, | ||
commitlintPath: path.resolve(__dirname, '../..') | ||
}; | ||
throw missingPluginErr; | ||
} | ||
|
||
// Otherwise, the plugin exists and is throwing on module load for some reason, so print the stack trace. | ||
throw pluginLoadErr; | ||
} | ||
|
||
// This step is costly, so skip if debug is disabled | ||
if (debug) { | ||
const resolvedPath = require.resolve(longName); | ||
|
||
let version = null; | ||
|
||
try { | ||
version = require(`${longName}/package.json`).version; | ||
} catch (e) { | ||
// Do nothing | ||
} | ||
|
||
const loadedPluginAndVersion = version | ||
? `${longName}@${version}` | ||
: `${longName}, version unknown`; | ||
|
||
console.log( | ||
chalk.blue( | ||
`Loaded plugin ${pluginName} (${loadedPluginAndVersion}) (from ${resolvedPath})` | ||
) | ||
); | ||
} | ||
|
||
plugins[pluginKey] = plugin; | ||
} | ||
} |
Oops, something went wrong.