runtime-build package
TypeScript apps use the
@journeyapps/runtime-build
package to evaluate types when building an app. This happens as part of a deploy:
The
@journeyapps/runtime-build
package is updated periodically - typically when new features are added to the JourneyApps Runtime or when type definitions are updated. The latest available version can be seen on our npmjs page.When upgrading your app's Runtime version it is recommended to also update your app's
@journeyapps/runtime-build
version:This version can be updated in your app's
package.json
file:package.json
{
..
"devDependencies": {
"@journeyapps/runtime-build": "^2.1.5"
}
}
After updating
package.json
, run the Update yarn.lock > App package action.The minimum
@journeyapps/runtime-build
version per major and minor JourneyApps Runtime version is documented in the table below:JourneyApps Runtime version | @journeyapps/runtime-build version |
---|---|
4.86.* | 2.1.5 |
4.85.* | 2.1.5 |
4.84.16+ | 2.1.5 |
4.84.* | 2.0.7 |
Last modified 4mo ago