-
Notifications
You must be signed in to change notification settings - Fork 677
chore: release #2503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: release #2503
Conversation
|
👁️🗨️ I notice the tests aren't starting for this PR. IIRC this is a limitation of app created PRs 🤖 I'm checking out options of starting tests with We also might ignore the required checks instead since tests on the |
62b8efc to
f617484
Compare
f617484 to
305b030
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2503 +/- ##
=======================================
Coverage 93.11% 93.11%
=======================================
Files 40 40
Lines 11269 11269
Branches 713 713
=======================================
Hits 10493 10493
Misses 764 764
Partials 12 12
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
zimeg
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@slack/cli-hooks@1.3.0
Minor Changes
0abdc91: feat(cli-hooks): add default app and manifest watch config
This package now provides default watch configurations for automatic file watching during
slack run. The CLI will restart your app server when source files change and reinstall your app when the manifest changes.Requirements: These features require Slack CLI v3.12.0+ with file watching support.
Default Configuration
The following watch settings are provided automatically when using this package:
{ "config": { "watch": { "app": { "filter-regex": "\\.js$", "paths": ["."] }, "manifest": { "paths": ["manifest.json"] } } } }Note: Manifest watching requires a local manifest source in your
.slack/config.jsonfile. Remote manifests will not be updated on file changes.{ "manifest": { "source": "local" } }Custom Configurations
You can override these defaults in your
.slack/hooks.jsonfile to reduce the paths searched or change the file patterns. Read Watch Configurations for more options.TypeScript Development
TypeScript developers should run
tsc --watchin a separate terminal during development. This compiles.tsfiles to.json changes, and the default watch configuration will detect changes to the compileddist/*.jsfiles and restart the app server. This approach works best with the default settings.Patch Changes
8962739: fix(cli-hooks): stop app process if the start hook exits
Fixes a CLI issue where daemon app processes were spawned if the CLI was exited without being interrupted.