1.8.2 • Published 8 years ago
aurelia-redeye-design v1.8.2
RedEye Design Aurelia
Component Library based on the RedEye Design Library.
Usage
To use this plugin, firstly install this library:
npm install "git+ssh://git@github.com/redeyeapps/aurelia-redeye-design.git#X.X.X"
X.X.Xis the version number of the release. Please check this repository for the latest version.
To get the component styling, import in your project as well the CSS from the RedEye Design Library.
In your project's main.ts file, utilize the plugin.
export async function configure(aurelia: Aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging();
aurelia.use.plugin(PLATFORM.moduleName('aurelia-redeye-design'), config => {
config.useAll();
});
await aurelia.start();
await aurelia.setRoot(PLATFORM.moduleName('main'));
}For documentation on how to use the components individually, see here
Development
NPM
To start, must link the package first.
npm installnpm run build && npm link aurelia-redeye-designcd /path/to/aurelia/appnpm install --link aurelia-redeye-design
And when finished.
cd /path/to/aurelia/appnpm install --unlink aurelia-redeye-design
JSPM
To start, must link the package first.
npm installnpm run build && jspm link github:redeyeapps/aurelia-redeye-design@1.2.1 -ycd /path/to/aurelia/appjspm install --link aurelia-redeye-design=github:redeyeapps/aurelia-redeye-design@1.2.1
And when finished.
cd /path/to/aurelia/appjspm install --unlink aurelia-redeye-design=github:redeyeapps/aurelia-redeye-design@1.2.1
1.8.2
8 years ago