Obtaining Development Builds
The latest bug fixes and features are initially published in the so-called development channel.
The development builds are used to validate recent implementations and collect early feedback.
Development builds are unstable and will often be broken. They might ship with major bugs and regressions.
Scenarios
-
To preview the components on the website in their current development stage, open the
develop
branch build. -
To obtain the latest development release once, use the
dev
dist-tag duringnpm install
.npm install --save @progress/kendo-react-buttons@dev
-
To obtain the latest development release every time, specify
dev
as a package version inpackage.json
and runnpm update
."dependencies": { "@progress/kendo-react-buttons": "dev", ... }
-
To revert to the stable channel, install the package without a tag specifier.
npm install --save @progress/kendo-react-buttons