Package: node-coffeeify / 2.0.1-1

nodejs.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Subject: use nodejs command
Description: Use nodejs command
 In Debian, node is named nodejs. This patch corrects the README.md
 file so that users are not confused.
Author: Ross Gammon <rossgammon@mail.dk>
Forwarded: not-needed
Last-Update: 2015-04-03

--- node-coffeeify.orig/README.md
+++ node-coffeeify/README.md
@@ -34,7 +34,7 @@
 
 ```shell
 $ browserify -t coffeeify foo.coffee > bundle.js
-$ node bundle.js
+$ nodejs bundle.js
 3125
 ```
 
@@ -46,7 +46,7 @@
 
 ```
 $ browserify -t coffeeify --extension=".coffee" foo.coffee > bundle.js
-$ node bundle.js
+$ nodejs bundle.js
 3125
 ```