-
Notifications
You must be signed in to change notification settings - Fork 535
Upcoming change‐‐The build task will no longer run formatting and check tasks
Historically, the build
script has implicitly run the policy-check
, layer-check
, and format
scripts. Soon, this behavior will change and the build script will only run build-related scripts. The other checks can be run using the checks
script. If you prefer the old behavior, you can use the build:all
script.
In PR #15992, the formatting and other repo-level "checks" have been separated from the standard build tasks. There is a new "checks" script in the root package.json which runs all the CI checks locally, including the syncpack and prettier tasks. This script is meant to be run locally to execute all the non-build-blocking checks that we do in CI. However, in CI these checks all still execute separately and serially, so it's easier to "zoom in" on a failure and fix it without running all checks (some checks, like prettier, can take significant time).
This wiki is focused on contributing to the Fluid Framework codebase.
For information on using Fluid Framework or building applications on it, please refer to fluidframework.com.
- Submitting Bugs and Feature Requests
-
Contributing to the Repo
- Repo Basics
- Common Workflows and Patterns
- Managing dependencies
- Client Code
- Server Code
- PR Guidelines
- CI Pipelines
- Breaking vs Non-Breaking Changes
- Branches, Versions, and Releases
- Compatibility & Versioning
- Testing
- Debugging
- npm package scopes
- Maintaining API support levels
- Developer Tooling Maintenance
- API Deprecation
- Working with the Website (fluidframework.com)
- Coding Guidelines
- Documentation Guidelines
- CLA