We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff6f47b commit 2643f8eCopy full SHA for 2643f8e
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "rxjs-tslint",
3
- "version": "0.1.5",
+ "version": "0.1.6",
4
"description": "TSLint rule for RxJS",
5
"main": "index.js",
6
"bin": {
src/rxjs-5-to-6-migrate.ts
@@ -21,7 +21,7 @@ const migrate = () => {
21
try {
22
errors = execSync(command).toString() || '';
23
} catch (e) {
24
- console.error(e.output.toString());
+ console.error('Error whilee running the migration:', e.output.toString());
25
process.exit(1);
26
}
27
if (errors.indexOf('WARNING:') >= 0) {
0 commit comments