1.0.0 • Published 4 years ago

chmodx v1.0.0

Weekly downloads
14
License
MIT
Repository
github
Last release
4 years ago

chmodx

A cross platform command line utility for setting the executable bits on files. It is roughly equivalent to the Linux chmod +x <patterns...> command.

This utility was created to address the Yarn limitation where "bin" entries in package.json are not made executable on yarn link. However, it can be used any time you need to make files executable in a cross platform context.

When a file cannot be accessed:

  • An error message is printed.
  • The process continues in order to handle all remaining files.
  • The process exits with a non-zero status.

Usage

Set the executable bit on files matching glob patterns.

npx chmodx "foo/*.js" "bar/*.js"

Set the executable bit on all files referenced by your `package.json' file "bin" entry. The value(s) must be plain file paths (e.g. "src/index.js").

npx chmodx --package