Aurelia CLI
Bridge Installation
Aurelia-CLI
npm install aurelia-kendoui-bridge --save
Open
aurelia_project/aurelia.json
and append the following to thedependencies
section of thevendor-bundle
:Note: When getting ready to create a production bundle you will want to make sure that all resources that you use of the bridge (all wrappers) are defined in the
resources
property inaurelia.json
. This tells the CLI to add these files to the bundle. If you don't do this you will get 404's after deploying, as RequireJS will look for the missing files in their original location (node_modules/aurelia-kendoui-bridge/some-file.js)While still in the
aurelia.json
file, change thestub
property of thetext
plugin tofalse
:open main.js and register the plugin:
Important
Last updated