Skip to content

Commit

Permalink
assert ssl certs aren't published. fixes #1171
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Nov 2, 2017
1 parent d2fef58 commit cd01d9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ node_modules
/client/index.bundle.js
/client/sockjs.bundle.js
/coverage
*.pem
/ssl/*.pem
.idea/
.DS_Store
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"lint": "eslint bin lib test examples client/{index,live,socket,sockjs,overlay,webpack.config}.js",
"mocha": "mocha --full-trace --check-leaks",
"prepublish": "npm run -s build:live && npm run -s build:index && npm run -s build:sockjs",
"prepublish": "(rm ssl/*.pem || true) && npm run -s build:live && npm run -s build:index && npm run -s build:sockjs",
"test": "npm run lint && npm run mocha",
"build:live": "webpack ./client/live.js client/live.bundle.js --color --config client/webpack.config.js",
"build:index": "webpack ./client/index.js client/index.bundle.js --color --config client/webpack.config.js",
Expand Down

0 comments on commit cd01d9e

Please sign in to comment.