Skip to content

Commit 75197c7

Browse files
committed
first commit
0 parents  commit 75197c7

File tree

7 files changed

+107
-0
lines changed

7 files changed

+107
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.vscode
3+
*.vsix
4+
*.DS_Store

.vscodeignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.vscode/**
2+
.github/**
3+
*.vsix
4+
5+
.gitattributes
6+
.gitignore
7+
.gitmodules
8+
.appveyor.yml
9+
.travis.yml
10+
.npmrc
11+
.yarnrc
12+
13+
tsconfig*.json
14+
package-lock.json
15+
16+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## 0.1.0 - 2019-03-13
4+
5+
Initial release
6+
7+
- add 'justjavac.vscode-deno'
8+
- add 'esbenp.prettier-vscode'
9+
- add 'coenraads.bracket-pair-colorizer'

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Florian Knop
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Deno VSCode Extension Pack
2+
3+
[![Version](https://vsmarketplacebadge.apphb.com/version/justjavac.vscode-deno-extensionpack.svg)](https://marketplace.visualstudio.com/items?itemName=justjavac.vscode-deno-extensionpack)
4+
[![Downloads](https://vsmarketplacebadge.apphb.com/downloads/justjavac.vscode-deno-extensionpack.svg)](https://marketplace.visualstudio.com/items?itemName=justjavac.vscode-deno-extensionpack)
5+
6+
This extension pack packages some of the most popular (and some I find very useful) Deno extensions.
7+
8+
## Extensions included
9+
10+
- [Deno support for VSCode](https://marketplace.visualstudio.com/items?itemName=justjavac.vscode-deno) - Adds Deno support for VS Code using the TypeScript Deno language service plugin.
11+
12+
- [Prettier - JavaScript formatter](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) - format your Javascript / Typescript / CSS / Markdown.
13+
14+
- [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=coenraads.bracket-pair-colorizer) - This extension allows matching brackets to be identified with colours. The user can define which characters to match, and which colours to use. Super handy!
15+
16+
**Enjoy!**
17+
18+
## Contribute
19+
20+
Report a bug or a suggestion by posting an issue on the [git repository](https://github.com/justjavac/vscode-deno-extensionpack).

logo.png

8.15 KB
Loading

package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "vscode-deno-extensionpack",
3+
"displayName": "Deno VS Code Extension Pack",
4+
"description": "A collection of extensions for working with Deno Applications in VS Code",
5+
"publisher": "justjavac",
6+
"version": "0.1.0",
7+
"galleryBanner": {
8+
"color": "#47B784",
9+
"theme": "dark"
10+
},
11+
"icon": "logo.png",
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/justjavac/vscode-deno-extensionpack"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/justjavac/vscode-deno-extensionpack/issues"
18+
},
19+
"homepage": "https://github.com/justjavac/vscode-deno-extensionpack",
20+
"engines": {
21+
"vscode": "^1.26.0"
22+
},
23+
"categories": [
24+
"Extension Packs"
25+
],
26+
"keywords": [
27+
"deno",
28+
"extension pack",
29+
"deno extension collection"
30+
],
31+
"extensionPack": [
32+
"justjavac.vscode-deno",
33+
"esbenp.prettier-vscode",
34+
"coenraads.bracket-pair-colorizer"
35+
],
36+
"license": "MIT"
37+
}

0 commit comments

Comments
 (0)