Support hooks with custom node version.

This commit is contained in:
Anthony Sottile 2014-06-02 16:10:59 -07:00
parent 4b98b39cea
commit 511de4fe32
8 changed files with 61 additions and 31 deletions

View file

@ -0,0 +1,4 @@
#!/usr/bin/env node
console.log(process.version);
console.log('Hello World');

View file

@ -0,0 +1,5 @@
- id: node-11-8-hook
name: Node 0.11.8 hook
entry: node-11-8-hook
language: node
language_version: 0.11.8

View file

@ -0,0 +1,5 @@
{
"name": "node-11-8-hook",
"version": "0.0.1",
"bin": {"node-11-8-hook": "./bin/main.js"}
}