Skip to content

Commit

Permalink
chore(add_version): Fix typo causing the script to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Jan 9, 2019
1 parent b40c858 commit 6ae195f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/add_version.js
Expand Up @@ -26,6 +26,6 @@ package.devDependencies.typedoc = version;
fs.writeFileSync(PACKAGEJSON, JSON.stringify(package, null, 2));

const downstreams = JSON.parse(fs.readFileSync(DOWNSTREAMS));
downstreams.projects = downstream.projects || {};
downstreams.projects = downstreams.projects || {};
downstreams.projects[DIR] = `./test/${DIR}`;
fs.writeFileSync(DOWNSTREAMS, JSON.stringify(downstreams, null, 2));

0 comments on commit 6ae195f

Please sign in to comment.