verb icon indicating copy to clipboard operation
verb copied to clipboard

events.js:85 throw er; // Unhandled 'error' event

Open onokumus opened this issue 10 years ago • 0 comments

my sistem

uname -a
Linux zaman 4.1.3-1-ARCH #1 SMP PREEMPT Wed Jul 22 20:37:12 CEST 2015 x86_64 GNU/Linux

node version

node -v
v0.12.7

npm version

npm -v
2.13.2

package.json

{
  "name": "deneme",
  "version": "0.1.0",
  "description": "a verb config",
  "main": "verbfile.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/onokumus/deneme.git"
  },
  "keywords": [
    "verb",
    "markdown",
    "doc"
  ],
  "author": "Osman Nuri Okumuş <[email protected]> (https://github.com/onokumus)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/onokumus/deneme/issues"
  },
  "homepage": "https://github.com/onokumus/deneme#readme",
  "devDependencies": {
    "verb": "git://github.com/verbose/verb.git"
  }
}

.verb.md

# {%= name %}

> {%= description %}

verbfile.js

var verb = require('verb');

verb.task('readme', function() {
  verb.src('.verb.md')
    .pipe(verb.dest('.'));
});

verb.task('default', ['readme']);

Bat :disappointed:

verb -v
[11:59:48] CLI version 0.7.2
[11:59:48] Local version 0.8.7
[11:59:49] using verbfile ~/Desktop/sailbat/deneme/verbfile.js
[11:59:49] starting 'readme'
[11:59:49] finished 'readme' after 11 ms
[11:59:49] starting 'default'
[11:59:49] finished 'default' after 10 μs

events.js:85
      throw er; // Unhandled 'error' event
            ^
true

see https://github.com/onokumus/deneme

onokumus avatar Aug 03 '15 09:08 onokumus