Skip to content

Commit

Permalink
Added an exception for travis and heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
wassgha committed Jun 11, 2019
1 parent 4584121 commit 36a7491
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "lts/*"
- 'lts/*'
install: npm install
script:
- npm run lint
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"main": "index.js",
"scripts": {
"setup": "[ -f .env ] || makeconf",
"dev": "npm run setup && ENVIRON=DEV node server.js",
"build": "npm run setup && next build",
"dev": "ENVIRON=DEV node server.js",
"build": "next build",
"lint": "eslint --color ./ *.js",
"start": "npm run setup && ENVIRON=PROD node server.js",
"start": "ENVIRON=PROD node server.js",
"test": "echo \"No test specified yet.\" && exit 0",
"heroku-postbuild": "next build"
},
Expand Down

0 comments on commit 36a7491

Please sign in to comment.