Skip to content

Commit

Permalink
Vendor the node libraries required.
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Feb 2, 2010
1 parent b0076e8 commit 90d7957
Show file tree
Hide file tree
Showing 5 changed files with 2,146 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.js
@@ -1,10 +1,10 @@
// Load some libraries
var Haml = require('haml'),
Markdown = require('markdown'),
Less = require('less'),
var Haml = require('./vendor/haml'),
Markdown = require('./vendor/markdown'),
Less = require('./vendor/less'),
md5 = require('./vendor/md5').md5,
File = require('file'),
Posix = require('posix'),
md5 = require('md5').md5;
Posix = require('posix');

var ARTICLE_DIR = 'data/articles',
AUTHOR_DIR = 'data/authors',
Expand Down

0 comments on commit 90d7957

Please sign in to comment.