Skip to content

[Fix] Update delivery tools #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js
node_js:
- '0.12'
- '6.3.1'
before_script:
- 'npm install'
- 'bower install'
script: npm test
after_script: "npm install coveralls@2.10.0 && cat ./coverage/*/lcov.info | coveralls"
after_script: "npm install coveralls@2.10.0 && cat ./coverage/*/lcov.info | coveralls"
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
angular-sql-query
=====================
A simpler way to query a SQLite database
# angular-sql-query

[![NPM version][npm-image]][npm-url]
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
[![Build status][circleci-image]][circleci-url]
[![Codacy Badge][codacy-image]][codacy-url]
[![Codacy Coverage][codacy-coverage-image]][codacy-coverage-url]
[![Dependency Status][david-image]][david-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
Expand All @@ -24,7 +23,7 @@ When you're done, your setup should look similar to the following:
<!doctype html>
<html ng-app="myApp">
<head>

</head>
<body>
...
Expand Down Expand Up @@ -176,10 +175,16 @@ user.execute('SELECT * FROM user WHERE id=?', [1]);

[npm-image]: https://img.shields.io/npm/v/angular-sql-query.svg?style=flat-square
[npm-url]: https://npmjs.org/package/angular-sql-query
[travis-image]: https://img.shields.io/travis/SimpliField/angular-sql-query.svg?style=flat-square
[travis-url]: https://travis-ci.org/SimpliField/angular-sql-query
[circleci-image]: https://circleci.com/gh/SimpliField/angular-sql-query.svg?style=shield
[circleci-url]: https://circleci.com/gh/SimpliField/angular-sql-query
[coveralls-image]: https://img.shields.io/coveralls/SimpliField/angular-sql-query.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/SimpliField/angular-sql-query
[codacy-image]: https://api.codacy.com/project/badge/Grade/67af78db2da041f5a2d0dd9ca52850dd
[codacy-url]:
https://www.codacy.com/app/arnaud-spanneut/angular-sql-query/dashboard
[codacy-coverage-image]: https://api.codacy.com/project/badge/Coverage/67af78db2da041f5a2d0dd9ca52850dd
[codacy-coverage-url]:
https://www.codacy.com/app/arnaud-spanneut/angular-sql-query/dashboard
[david-image]: http://img.shields.io/david/SimpliField/angular-sql-query.svg?style=flat-square
[david-url]: https://david-dm.org/SimpliField/angular-sql-query
[license-image]: http://img.shields.io/npm/l/angular-sql-query.svg?style=flat-square
Expand Down
16 changes: 16 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
machine:
environment:
CODACY_PROJECT_TOKEN: b50d7f3860844f70b2c831b8adc22fff
COVERALLS_REPO_TOKEN: DN73y5QMkUP4bTdmDbkwv4diQwnOKkZBN

dependencies:
pre:
- nvm install v6.3.1
- nvm alias default v6.3.1

test:
pre:
- bower install
post:
- npm run codacy
- npm run coveralls
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
"compile": "gulp compile",
"version": "gulp compile && git add .",
"test": "./node_modules/gulp/bin/gulp.js compile && ./node_modules/karma/bin/karma start",
"cli": "env NPM_RUN_CLI=1"
"cli": "env NPM_RUN_CLI=1",
"cover": "karma start karma.conf.js --single-run --reporters coverage",
"codacy": "npm run cover && npm run codacy:send",
"codacy:send": "cat ./coverage/report-lcov/lcov.info | ./node_modules/.bin/codacy-coverage",
"coveralls": "npm run cover && npm run coveralls:send",
"coveralls:send": "cat ./coverage/report-lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": {
"name": "Arnaud Spanneut <arnaud.spanneut@simplifield.com>"
Expand All @@ -23,6 +28,8 @@
"babel-preset-es2015": "^6.24.1",
"bower": "1.8.0",
"chai": "3.5.0",
"codacy-coverage": "^2.0.2",
"coveralls": "^2.13.1",
"eslint": "3.19.0",
"eslint-config-simplifield": "5.1.1",
"gulp": "3.9.1",
Expand Down