Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
fix: cli importing missing library files (#500)
Browse files Browse the repository at this point in the history
The NPM package contains `build/` transpiled from `lib/`, lib is not present in released packages.

Fixes #490
  • Loading branch information
Marco Friso authored Aug 13, 2020
1 parent 20d67c0 commit 8d205b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/gavel
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var cmd = require('commander');
var httpParser = require('http-string-parser');
var curlParser = require('curl-trace-parser');
var gavel = require('../lib');
var gavel = require('../build');
var fs = require('fs');

cmd.version('0.0.1');
Expand Down

0 comments on commit 8d205b3

Please sign in to comment.