disallow
binfiles that npm ignores
- ⭐️ This rule is included in
plugin:node/recommendedpreset.
We can publish CLI commands by npm. It uses bin field of package.json.
{
"name": "command-name",
"bin": "bin/index.js"
}At this time, if npm ignores the file, your package will fail to install.
If npm ignores the files in bin field, this rule warns the files.
- If
filesfield does not includes the files inbinfield. - If
.npmignorefile includes the files inbinfield.
{
"rules": {
"node/no-unpublished-bin": ["error", {
"convertPath": null
}]
}
}If we use transpilers (e.g. Babel), perhaps the file path to a source code is never published.
convertPath option tells to the rule, it needs to convert file paths.
For example:
{
"rules": {
"node/no-unpublished-bin": ["error", {
"convertPath": {
"src/bin/**/*.js": ["^src/(.+)$", "$1"]
}
}]
}
}This option has the following shape: <targetFiles>: [<fromRegExp>, <toString>]
targetFiles is a glob pattern.
It converts paths which are matched to the pattern with the following way.
path.replace(new RegExp(fromRegExp), toString);So on this example, src/bin/index.js is handled as bin/index.js.
The convertPath option can be an array as well.
For example:
{
"rules": {
"node/no-unpublished-bin": ["error", {
"convertPath": [
{
"include": ["src/bin/**/*.js"],
"exclude": ["**/*.spec.js"],
"replace": ["^src/(.+)$", "$1"]
}
]
}]
}
}In this style, this option has the following shape as the same expression as above: {include: [<targetFiles>], replace: [<fromRegExp>, <toString>]}.
In addition, we can specify glob patterns to exclude files.
The following options can be set by shared settings. Several rules have the same option, but we can set this option at once.
convertPath
For Example:
{
"settings": {
"node": {
"convertPath": {
"src/bin/**/*.js": ["^src/bin/(.+)$", "bin/$1"]
}
}
},
"rules": {
"node/no-unpublished-bin": "error"
}
}