@slack/cli-test@3.0.0
·
30 commits
to main
since this release
Major Changes
-
d2b7a89: refactor(cli-test)!: rename env add/remove to env set/unset
The Slack CLI v4.0.0 release changes the
envcommands to prefersetandunsetaliases and the test tracers of this package were changed to match:- SLACK_TRACE_ENV_ADD_SUCCESS - SLACK_TRACE_ENV_REMOVE_SUCCESS + SLACK_TRACE_ENV_SET_SUCCESS + SLACK_TRACE_ENV_UNSET_SUCCESS
-
5a9bb9a: refactor(cli-test)!: move 'create' to 'project create'
Before the Slack CLI v4.0.0 release, the
createcommand became aprojectsubcommand while remaining aliased the same. This project now prefers:const createOutput = await SlackCLI.project.create({ template: "slack-samples/bolt-js-starter-template", appPath, verbose: true, });
But continues to run the
slack createcommand for confidence in getting started guides.