aurelia-simple-tabs v1.2.0
Aurelia simple tabs
A barebones Aurelia tabs component
Install
npm install aurelia-simple-tabs --save
Use
import { PLATFORM } from 'aurelia-pal';
export async function configure(aurelia) {
//...
aurelia.use
//..
.plugin(PLATFORM.moduleName('aurelia-simple-tabs'))
}<simple-tabs>
<simple-tab name="Tab 1">tab 1</simple-tab>
<simple-tab name="Tab 2">tab 2</simple-tab>
<simple-tab name="Tab 3">tab 3</simple-tab>
</simple-tabs>Depending on your build setup you might need to add this to package.json
//...
"aurelia": {
"build": {
"resources": [
//..
"simple-tabs",
"simple-tabs/simple-tab.html"
]
}
},
//..Building The Code
To build the code, follow these steps.
- Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
From the project folder, execute the following command:
npm installEnsure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulpTo build the code, you can now run:
gulp buildYou will find the compiled code in the
distfolder, available in three module formats: AMD, CommonJS and ES6.See
gulpfile.jsfor other tasks related to generating the docs and linting.
Running The Tests
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cliEnsure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspmInstall the client-side dependencies with jspm:
jspm installYou can now run the tests with this command:
karma start