1
0
Fork 0
mirror of synced 2024-09-20 03:08:18 +12:00
budibase/scripts/run-affected.js

35 lines
1.2 KiB
JavaScript
Raw Normal View History

2024-07-02 21:48:01 +12:00
/***
* Running lerna with since and scope is not working as expected.
2024-07-02 22:02:00 +12:00
* For example, running the command `yarn test --scope=@budibase/worker --since=master`, with changes only on `@budibase/backend-core` will not work as expected, as it does not analyse the dependencies properly. The actual `@budibase/worker` task will not be triggered.
2024-07-02 21:48:01 +12:00
*
2024-07-02 22:02:00 +12:00
* This script is using `lerna ls` to detect all the affected projects from a given commit, and if the scoped package is affected, the actual command will be executed.
2024-07-02 21:48:01 +12:00
*
* The current version of the script only supports a single project in the scope.
*/
2024-07-02 21:38:21 +12:00
const { execSync } = require("child_process")
2024-07-02 21:48:01 +12:00
const argv = require("yargs").demandOption(["task", "since", "scope"]).argv
2024-07-02 21:38:21 +12:00
2024-07-02 21:48:01 +12:00
const { task, since, scope } = argv
2024-07-02 21:38:21 +12:00
const affectedPackages = execSync(
`yarn --silent lerna ls --since=${since} --json`,
{
encoding: "utf-8",
}
)
const packages = JSON.parse(affectedPackages)
2024-07-02 21:48:01 +12:00
const isAffected = packages.some(pkg => pkg.name === scope)
2024-07-02 21:38:21 +12:00
if (isAffected) {
2024-07-02 21:48:01 +12:00
console.log(`${scope} is affected. Running task "${task}"`)
execSync(`yarn ${task} --scope=${scope}`, {
2024-07-02 21:38:21 +12:00
stdio: "inherit",
})
} else {
2024-07-02 21:48:01 +12:00
console.log(`${scope} is not affected. Skipping task "${task}"`)
2024-07-02 21:38:21 +12:00
}