@mhe-engrade/air
v0.21.0-develop.3
Published
AIR library
Downloads
33
Readme
Assessment Item Renderer (AIR)
Installation
Currently AIR must be installed through @mhe-engrade
npm.
package.json
:
"dependencies": {
"@mhe-engrade/air": "~0.11.0-develop"
}
You'll need our .npmrc
file: https://github.mheducation.com/MHEducation/dle-assess-delivery-ui-ng2/blob/develop/.npmrc
Latest production version is 0.10.9
: https://github.mheducation.com/MHEducation/dle-assess-delivery-air/releases/tag/0.10.9
To install a particular tag or version just attach it to the end of the above url for example:
Dependencies
- Node
v7.x.x
+ and NPM3.x.x
+
Demo
To Run demo:
First run:
npm install
This will install all dependencies listed in package.json
file.
and then:
gulp demo
to launch the demo.
Testing Your Local Updates
To test local changes on your application using dle-air, it's recommended to checkout both in the same parent directory.
Then, you'll remove the air directory under node_modules folder.
Updated package.json:
"dependencies": {
"@mhe-engrade/air": "../dle-assess-delivery-air"
}
This will automatically install your local copy with your changes and you may rerun this command at any point to get your most recent changes.
- NOTE: You may have to run the containing application's build process for it to pick up the changes.
In the case of Assess Delivery UI, this is
npm run build:prod
.