Skip to content
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
30 changes: 18 additions & 12 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
tests/
tasks/
src/
node_modules/
Gruntfile.js
.travis.yml
.gitignore
.eslintrc
.babelrc
.eslintignore
bower.json
.eslintrc
.gitignore
.grunt
.jscsrc
.npmignore
webpack.config.js
karma.conf.js
dist/tests.js.map
.npmrc
.travis.yml
Gruntfile.js
bower.json
coverage/
dist/tests.js
dist/tests.js.map
docs/
karma.conf.js
node_modules/
src/
tasks/
tests/
webpack.config.js
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ after_script:
deploy:
provider: npm
email: addons-dev-automation+npm@mozilla.com
before_deploy: npm run build
skip_cleanup: true
api_key:
secure: bVMeDrmxJB7QajecwgqoKlIfdduwUv+qqGrv1ucD9IS9aD2fFUljMruzVxzYzJLgdz1anWHEeuLsVZ4KbCgp8axa/PHKjVOhqglRXvgJezE+d4DuVtbBOXAD4JV+F8DA75ZLCe+sZm94lFa4MKnUiyvwR/v2yyNMQWJL/pZRv87yx/G1i3yBuMzhFaj51DQSWreXyxq+mI5TLvLoWO9jzXtFOCynq+ufFhWw7pUz3/eqwp1VD9YIuUxLsT9U0KJHF4E5flhWl3tq9OYM3k26qs0m7BUYZ5O1dSnXQsODlbSe1PnRs6o1Mex/ZYdN56CdP4+32o1seGWbWHQRzvQuHSR29opqPORuKcyDAbXeUhyoo1V6zguKbXb7++9iSq0CiKLSHMzeuTco7bdpeOZYnWSH1mBi/QMUIg2dp7+0fpRTuBp7+rY2xFzqoRGg16fLotVkZDBwlXkxRTatM0QVvvscAmksPBIZI8xmB2+B0RNLcwBTuQKVeQ7988Bw1oZ94rhIhfKljbhnIzU11Y1sexmV/UzXxiFs/L6wbFr0fI7BTBrfdXAIMWaGQ9uwBCRn2EH9fLx3B3LoEXe7eL84jLgdOgRzR6eQTlkDpwvh9Jf3fbcv1S89pWpwt2CgxtofY/wMO3WpRW6e5fqo83rKwmuAzDuqzRjl+vvoc4IR5yE=
Expand Down
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ module.exports = function(grunt) {
grunt.registerTask('test', [
'clean',
'instrument',
'webpack:build',
'webpack:eslint',
'webpack:coverage',
'mochaTest',
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"name": "addons-validator",
"version": "0.0.2",
"description": "Mozilla addons validator",
"main": "index.js",
"main": "dist/addons-validator.js",
"bin": {
"addons-validator": "bin/addons-validator"
},
"scripts": {
"start": "node -e \"require('grunt').cli()\" null start",
"build": "node -e \"require('grunt').cli()\" null build",
Expand Down