Skip to content

Commit

Permalink
adjusting tsc bug for build
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Damasceno committed Apr 5, 2016
1 parent 6f6779f commit 8808e43
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ install:
- 'npm install mocha'
- 'npm install'
script:
- 'tsc && node ./node_modules/vscode/bin/compile'
- 'node ./node_modules/vscode/bin/compile'
- 'npm test'
after_script: 'cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js'
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
## vscode-console-wrapper
Makes easier to log any code in console.

[![Build Status](https://travis-ci.org/fabiodamasceno/vscode-console-wrapper.svg?branch=master)](https://travis-ci.org/fabiodamasceno/vscode-console-wrapper)
[![Coverage Status](https://coveralls.io/repos/github/fabiodamasceno/vscode-console-wrapper/badge.svg?branch=master)](https://coveralls.io/github/fabiodamasceno/vscode-console-wrapper?branch=master)

Makes easier to console.log(things) in Visual Studio Code


##usage

* Select what you want to log.
* Press Ctrl+Shift+Q.


## License
[MIT License](https://raw.githubusercontent.com/akamud/vscode-caniuse/master/LICENSE)
20 changes: 19 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "vscode-console-wrapper",
"displayName": "vscode-console-wrapper",
"description": "Makes easier to log any code in console.",
"description": "Makes easier to log any code through console in Visual Studio Code.",
"version": "0.0.1",
"publisher": "fabiodamasceno",
"license": "MIT",
"engines": {
"vscode": "^0.10.10"
},
Expand All @@ -14,6 +15,23 @@
"onCommand:extension.consoleWrapper"
],
"main": "./out/src/extension",
"author": "fabiodamasceno",
"keywords": [
"console",
"console.log",
"vscode",
"logging",
"javascript",
"log"
],
"bugs": {
"url": "https://github.com/fabiodamasceno/vscode-console-wrapper/issues"
},
"homepage": "https://github.com/fabiodamasceno/vscode-console-wrapper/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/fabiodamasceno/vscode-console-wrapper.git"
},
"contributes": {
"commands": [
{
Expand Down

0 comments on commit 8808e43

Please sign in to comment.