Skip to content

Commit

Permalink
chore: rebase upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Dec 9, 2020
1 parent 39fa4d9 commit efcd0d6
Show file tree
Hide file tree
Showing 5 changed files with 150 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
image: gitpod/workspace-full

tasks:
- init: npm install && npm run build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RxJS TSLint
# RxJS TSLint [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/rx-ts/rxjs-tslint)

TSLint rules for rxjs.

Expand Down
140 changes: 140 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rxts/rxjs-tslint",
"version": "0.2.0",
"version": "0.2.1",
"description": "TSLint rule for RxJS",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -54,7 +54,9 @@
"json-stringify-pretty-compact": "^1.1.0",
"mocha": "^5.2.0",
"rimraf": "^2.5.2",
"ts-node": "^3.3.0"
"ts-node": "^3.3.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"peerDependencies": {
"tslint": ">=5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/rxjs-5-to-6-migrate.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { argv } from 'yargs';
import { join } from 'path';
import { execSync } from 'child_process';
import * as chalk from 'chalk';
import chalk from 'chalk';

if (!argv.p) {
console.log(chalk.red('Provide path to your `tsconfig` file using the `-p` flag.'));
Expand Down

0 comments on commit efcd0d6

Please sign in to comment.