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

make coffeescript a dev dependency #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
lib/shutdownHandler.js
node_modules
coverage
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
coverage
14 changes: 11 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
// Only require coffeescript if it is not already registered
if (!require.extensions[".coffee"]) require("coffee-script/register");
try {
module.exports = require("./shutdownHandler");
} catch(e) {
if(e.message.startsWith("Cannot find module './shutdownHandler'")) {
// Only require coffeescript if it is not already registered
if (!require.extensions[".coffee"]) require("coffee-script/register");

module.exports = require("./shutdownHandler.coffee");
module.exports = require("./shutdownHandler.coffee");
} else {
throw e;
}
}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@
"homepage": "https://github.com/UberEther/node-shutdown-events",
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover --config test/istanbul.yml node_modules/mocha/bin/_mocha"
"test-cov": "istanbul cover --config test/istanbul.yml node_modules/mocha/bin/_mocha",
"prepublish": "coffee -o lib -c lib/*.coffee"
},
"dependencies": {
"coffee-script": "^1.9.2",
"bluebird": "^2.9.13",
"debug": "^2.2.0"
},
"devDependencies": {
"coffee-script": "^1.9.2",
"mocha": "^2.3.0",
"chai": "^3.2.0",
"rewire": "^2.3.4",
Expand Down