Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed May 17, 2018
1 parent b813550 commit 86cc937
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "base-npm-submodules",
"version": "1.0.1",
"version": "1.0.4",
"private": true,
"description": "Simple way to manage angular submodules in one repository",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/bin/ngm-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Promise
return main(cli.input[0], cli);
})
.catch(err => {
console.error(`\n` && err.stderr || '');
console.error(`\n`, err && err.stderr || '');
console.error(`\n`, err);
process.exit(1);
});
3 changes: 1 addition & 2 deletions src/utils/tasks-watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ export function tasksWatch({project, taskQueue, watch, paths}){
})
.catch(err => {
if (err) {
console.error(`\n${err.message}`);
console.error(err);
}
console.error()
isRunning = false;
});
}
Expand Down
6 changes: 5 additions & 1 deletion todo.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
- add npm unlink
- add npm unlink

copy package to dist
remove private: true
rename to ngm-cli

0 comments on commit 86cc937

Please sign in to comment.