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

Commit

Permalink
options.output mis-named as options.build (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman authored Mar 31, 2017
1 parent adcc04f commit e9a7a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neutrino/src/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const getOptions = (options = {}) => {
const root = normalizePath(process.cwd(), defaultTo('', options.root));
const base = normalizePath(root);
const source = base(defaultTo('src', options.source));
const output = base(defaultTo('build', options.build));
const output = base(defaultTo('build', options.output));
const tests = base(defaultTo('test', options.tests));
const node_modules = base(defaultTo('node_modules', options.node_modules)); // eslint-disable-line camelcase
const entry = normalizePath(source, defaultTo('index.js', options.entry));
Expand Down

0 comments on commit e9a7a36

Please sign in to comment.