|
пре 2 година | |
---|---|---|
.. | ||
lib | пре 2 година | |
CHANGELOG.md | пре 2 година | |
LICENSE | пре 2 година | |
README.md | пре 2 година | |
package.json | пре 2 година |
@lerna/check-working-tree
Check git working tree status and error appropriately
const { checkWorkingTree } = require("@lerna/check-working-tree");
// values listed here are their defaults
const options = {
cwd: process.cwd(),
};
(async () => {
try {
await checkWorkingTree(options);
} catch (err) {
console.error(err.message);
// "Working tree has uncommitted changes, ..."
}
})();
Install lerna for access to the lerna
CLI.