Skip to content
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

Dev UX tweaks #34

Merged
merged 5 commits into from Aug 28, 2017
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 17 additions & 10 deletions .travis.yml
@@ -1,15 +1,22 @@

language: node_js

node_js:
- "8"
- "6"
- "4"

# Here (rather than top-level 'os') means it only runs once, for latest Node
matrix:
include:
- os: osx

- node_js: '8'
os: osx
- node_js: '8'
env:
- CAN_DEPLOY=true
- node_js: '6'
- node_js: '4'
notifications:
email: false
deploy:
provider: npm
email: accounts@resin.io
api_key:
secure: cPCOcqgCXRAah3g//4DPLo1g16bqiASk8uIOM2d4tAOpj81ngOFEyOPLGwYi1gE3GVUsoHjIft63QFYfG7B8EjcRFfGCtgSzrSNhsun3gCq987nTM6SrKuMGRFrBXmwMzTGkXUdzpcg4KR8YOW4pKvaohsXjoUIXb5hY5wGQKRgzMKpkYyhBD2HHNuKHeBl4s6uwe6q09ab2oKYYD7LWSt8ieJGyfY97rpxjiOQifXoRZARhtMwUWoP0dgp84v9Lo6ZYWbwGAnhJIgZZmRYJQ2vaFJ9gRa9dODWd19HSvAnBqoVErcMQ1EQJNA7IuX7nzbyUF8o2Ux/h2luXyqPuqarDshD7Z8YOqG3jbXjZ0Dma0LpzJ1vA616GAhXd6+iNVs4eJSu9p/qlXUIVrkWa8cco7+DMNavO6/q/cclyRijVO4n5UfG/GIkfySJVQcw9Er24NWNnY0hmhxTjdYO1QeIatf1ctU/2AWhA00jQgofw8ngARnrKfeaZnnJZSsjNf83QOzyS1HnL9tQEgcX2gWyvreaapmPli8jGiHuktkSSl5+3l4+zDA0conzhAq13BcEvQLlfMU5hfJSQvQArV+GmzBIzk7w5UlLE0ttdmxt9iq7V+JzR0HfcIs48YK0AUyGI9vxuYvKnAeAQv0qwCi3a7bwz7d8ofR+4DJ1obeQ=
skip_cleanup: true
on:
tags: true
condition: "$CAN_DEPLOY = 'true' && $TRAVIS_TAG =~ ^v?[[:digit:]]+\\.[[:digit:]]+\\.[[:digit:]]+"
repo: resin-io-modules/resin-discoverable-services
27 changes: 0 additions & 27 deletions gulpfile.coffee

This file was deleted.

21 changes: 10 additions & 11 deletions package.json
Expand Up @@ -18,25 +18,24 @@
"test": "tests"
},
"scripts": {
"build": "gulp build",
"lint": "resin-lint lib tests gulpfile.coffee",
"test": "npm run lint && gulp test",
"prepublish": "npm test && npm run build"
"build": "rm -rf build/ && coffee -o build/ -c lib/",
"lint": "resin-lint lib tests",
"mocha": "mocha --compilers coffee:coffee-script/register tests/**/*.spec.coffee",
"test": "npm run build && npm run lint && npm run mocha",
"prepublish": "require-npm4-to-publish",
"prepublishOnly": "npm test"
},
"author": "Heds Simons <heds@resin.io>",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coffee-script": "~1.11.0",
"gulp": "^3.8.10",
"gulp-coffee": "^2.2.0",
"gulp-mocha": "^3.0.0",
"gulp-util": "^3.0.1",
"mkdirp": "^0.5.1",
"mocha": "^3.0.0",
"mockery": "^1.7.0",
"mocha": "^3.5.0",
"mochainon": "^1.0.0",
"mockery": "^1.7.0",
"require-npm4-to-publish": "^1.0.0",
"resin-lint": "^1.4.0",
"rmdir": "^1.2.0"
},
Expand All @@ -49,4 +48,4 @@
"optionalDependencies": {
"dbus-native": "^0.2.2"
}
}
}