Skip to content

Commit 86cc937

Browse files
committed
v1.0.4
1 parent b813550 commit 86cc937

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "base-npm-submodules",
3-
"version": "1.0.1",
3+
"version": "1.0.4",
44
"private": true,
55
"description": "Simple way to manage angular submodules in one repository",
66
"bin": {

src/bin/ngm-cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Promise
145145
return main(cli.input[0], cli);
146146
})
147147
.catch(err => {
148-
console.error(`\n` && err.stderr || '');
148+
console.error(`\n`, err && err.stderr || '');
149149
console.error(`\n`, err);
150150
process.exit(1);
151151
});

src/utils/tasks-watch.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ export function tasksWatch({project, taskQueue, watch, paths}){
3434
})
3535
.catch(err => {
3636
if (err) {
37-
console.error(`\n${err.message}`);
37+
console.error(err);
3838
}
39-
console.error()
4039
isRunning = false;
4140
});
4241
}

todo.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
- add npm unlink
1+
- add npm unlink
2+
3+
copy package to dist
4+
remove private: true
5+
rename to ngm-cli

0 commit comments

Comments
 (0)