Skip to content

Commit

Permalink
Improved build process reliability
Browse files Browse the repository at this point in the history
  • Loading branch information
Luciano Mammino committed May 2, 2017
1 parent 0d022a7 commit 2e1c6e3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Expand Up @@ -2,6 +2,6 @@ root = true

[*]
end_of_line = lf
insert_final_newline = false
insert_final_newline = true
indent_style = space
indent_size = 2
indent_size = 2
3 changes: 1 addition & 2 deletions circle.yml
Expand Up @@ -20,5 +20,4 @@ test:
post:
- cp -r coverage/lcov-report $CIRCLE_TEST_REPORTS/coverage
- codecov
- if [ $CIRCLE_BRANCH = 'master' ]; then npm run build && npm run package:create; fi
- if [ $CIRCLE_BRANCH = 'master' ]; then npm run package:publish && npm publish; fi
- if [ $CIRCLE_BRANCH = 'master' ]; then npm run build && npm run package:create && npm run package:publish && npm publish; fi
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "norrisbot",
"version": "2.0.3",
"description": "a Slack bot that kicks asses (roundhouse-kicks to be accurate...)",
"version": "2.0.4",
"description": "A Slack bot that kicks asses (roundhouse-kicks to be accurate...)",
"keywords": [
"Slack",
"bot",
Expand Down
1 change: 1 addition & 0 deletions publish-release.js
@@ -1,5 +1,6 @@
/* eslint no-console: "off" */
/* eslint import/no-extraneous-dependencies: "off" */

const fs = require('fs');
const path = require('path');
const request = require('request-promise');
Expand Down

0 comments on commit 2e1c6e3

Please sign in to comment.