Skip to content

Commit

Permalink
Added graceful-fs requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Nov 29, 2011
1 parent d61b241 commit 82fa792
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions lib/index.js
Expand Up @@ -24,6 +24,8 @@ http://yuilibrary.com/license/
var YUI = require('yui3').YUI,
path = require('path');

require('graceful-fs');

var Y = YUI({
modules: {
help: {
Expand All @@ -49,8 +51,8 @@ var Y = YUI({
logExclude: {
yui: true,
get: true,
loader: true,
files: true
files: true,
loader: true
}
}).useSync('docparser', 'yuidoc', 'utils', 'doc-builder', 'docview', 'files', 'help');

Expand Down
9 changes: 5 additions & 4 deletions package.json
@@ -1,9 +1,9 @@
{
"name": "yuidocjs",
"version": "0.2.0",
"version": "0.2.1",
"description": "YUI Doc, JavaScript port",
"author": "Dav Glass <davglass@gmail.com>",
"bugs": { "web" : "http://github.com/davglass/yuidocjs/issues" },
"bugs": { "url" : "http://github.com/davglass/yuidocjs/issues" },
"os": ["darwin", "linux"],
"contributors": [
{ "name": "Adam Moore", "email": "amoore@gmail.com" },
Expand All @@ -18,13 +18,14 @@
"yui3": "*",
"node-markdown": "*",
"yui3-core": "3.4.0",
"minimatch": "0.0.4"
"minimatch": "0.0.4",
"graceful-fs": "1.1.1"
},
"preferGlobal": "true",
"licenses":[
{
"type" : "BSD",
"url" : "http://developer.yahoo.com/yui/license.html"
"url" : "http://yuilibrary.com/license"
}
],
"repository": {
Expand Down

0 comments on commit 82fa792

Please sign in to comment.