mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 18:13:24 +01:00
.. | ||
dist | ||
src | ||
CHANGELOG.md | ||
package.json | ||
README.md |
@changesets/get-release-plan
A function that reads information about the current repository
import getReleasePlan from "@changesets/get-release-plan";
const releasePlan = await getReleasePlan(cwd, since, passedConfig);
cwd: string
The directory to run getReleasePlan
in - most often process.cwd()
since: string
Sets whether to use all changesets present, or only those changesets that are new since the branch diverged from another one.
passedConfig?: Config
The changeset config options as defined in @changesets/types
. This is optional, and can be used to overwrite any written config options.