CB-9825 framework tag spec parsing

 This closes #461
1 file changed
tree: 779308112775c91364ccd9b09f314de525fd696a
  1. cordova-common/
  2. cordova-fetch/
  3. cordova-lib/
  4. cordova-serve/
  5. .gitignore
  6. .travis.yml
  7. appveyor.yml
  8. CONTRIBUTING.md
  9. LICENSE
  10. NOTICE
  11. README.md
README.md

Build status Build Status Code coverage NPM

BuildBot waterfall with cordova-mobile-spec running on real Android and iOS devices.

cordova-lib

Contains npm modules used primarily by cordova and plugman.

:warning: Report issues on the Apache Cordova issue tracker

Setup

  • Clone this repository onto your local machine. git clone https://git-wip-us.apache.org/repos/asf/cordova-lib.git
  • In terminal, navigate to the inner cordova-lib directory. cd cordova-lib/cordova-lib
  • Install dependencies and npm-link npm install && npm link
  • Navigate to CLI and Plugman directories and link cordova-lib cd ../../cordova-cli && npm link cordova-lib && npm install cd ../../cordova-plugman && npm link cordova-lib && npm install

NPM commands

This package exposes the following commands;

  • npm run jshint - runs jshint check against all js files

  • npm run jasmine - runs jasmine tests from spec-plugman and spec-cordova directories

  • npm run cover - runs istanbul code coverage tool to measure tests coverage

  • npm test - shortcut for npm run jshint && npm run jasmine