1.2.0 • Published 6 years ago

aurelia-simple-tabs v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

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.

  1. Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
  2. From the project folder, execute the following command:

    npm install
  3. Ensure that Gulp is installed. If you need to install it, use the following command:

    npm install -g gulp
  4. To build the code, you can now run:

    gulp build
  5. You will find the compiled code in the dist folder, available in three module formats: AMD, CommonJS and ES6.

  6. See gulpfile.js for 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:

  1. Ensure that the Karma CLI is installed. If you need to install it, use the following command:

    npm install -g karma-cli
  2. Ensure that jspm is installed. If you need to install it, use the following commnand:

    npm install -g jspm
  3. Install the client-side dependencies with jspm:

    jspm install
  4. You can now run the tests with this command:

    karma start
1.2.0

6 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago