Skip to content

Commit

Permalink
remove line-numbers from babel-code-frame
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmck committed Mar 22, 2016
1 parent 971ab0e commit 0928764
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/babel-code-frame/package.json
Expand Up @@ -12,7 +12,6 @@
"chalk": "^1.1.0",
"esutils": "^2.0.2",
"js-tokens": "^1.0.1",
"line-numbers": "^0.2.0",
"repeating": "^1.1.3"
}
}
6 changes: 5 additions & 1 deletion packages/babel-code-frame/src/index.js
@@ -1,12 +1,16 @@
/* eslint indent: 0 */
/* eslint max-len: 0 */

import lineNumbers from "line-numbers";
//import lineNumbers from "line-numbers";
import repeating from "repeating";
import jsTokens from "js-tokens";
import esutils from "esutils";
import chalk from "chalk";

function lineNumbers(lines) {
return lines;
}

/**
* Chalk styles for token types.
*/
Expand Down

4 comments on commit 0928764

@dtothefp
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kittens can we get this published asap...as I'm sure you know it's causing major issues. left-pad/left-pad#5

@sebmck
Copy link
Contributor Author

@sebmck sebmck commented on 0928764 Mar 22, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dtothefp yes that's what i'm trying to do right now

@dtothefp
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool...thx

@vhmth
Copy link

@vhmth vhmth commented on 0928764 Mar 22, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Please sign in to comment.