www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 581ff4daae3f94661ea8598bc79141452b09af5d
parent d0ecea125ffd4e9f47d0648bf30da9df79ef7d59
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Sun,  7 Feb 2016 07:46:50 -0500

Merge pull request #1373 from mathjax/issue1346

npm publish via continuous integration
Diffstat:
A.travis.yml | 18++++++++++++++++++
Mpackage.json | 5++++-
2 files changed, 22 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml @@ -0,0 +1,18 @@ +language: node_js +node_js: + - '5' +sudo: false +script: + - npm install + - npm test +branches: + only: + - master + - /^\d+\.\d+/ +deploy: + provider: npm + email: manager@mathjax.org + api_key: + secure: bvV24vukT5rVQLyo5GOI1ZM23wbVGeu+AQMkq6IYFFAoggZR9VRCASrwRPfrdzgQYpW2m2al3YaQ/0PvEaOckP+fapqkPtsefjrHaTURxrzPb/KYmiLCN5uhYbJPDSXuFCuNqzMU0zFh3savedWiQZfaaXirLYB3aeDPqCbmqTI= + on: + tags: true diff --git a/package.json b/package.json @@ -23,5 +23,8 @@ "type": "git", "url": "git://github.com/mathjax/MathJax.git" }, - "main": "./MathJax.js" + "main": "./MathJax.js", + "scripts": { + "test": "echo 'No tests here!'" + } }