Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move parser code built by peg into lib and add to repository
  • Loading branch information
niklasl committed Jul 15, 2015
1 parent ca5b2f9 commit 57ea5fb
Show file tree
Hide file tree
Showing 6 changed files with 4,080 additions and 9 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,2 +1 @@
/node_modules
/build
2 changes: 1 addition & 1 deletion lib/cli.js
@@ -1,5 +1,5 @@
var fs = require('fs');
var trigParser = require('../build/parsers/trig');
var trigParser = require('./parsers/trig');

function streamToString(stream, encoding, callback) {
var bufs = [];
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
@@ -1 +1 @@
module.exports.trig = require('../build/parsers/trig');
module.exports.trig = require('./parsers/trig');

0 comments on commit 57ea5fb

Please sign in to comment.