Skip to content

Commit 8f1e7f6

Browse files
author
Dvir Yitzchaki
committed
packaging
1 parent 29590b5 commit 8f1e7f6

File tree

7 files changed

+55
-56
lines changed

7 files changed

+55
-56
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Dvir Yitzchaki
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: 11 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,23 @@
1-
# parquet-viewer README
1+
# parquet-viewer
22

3-
This is the README for your extension "parquet-viewer". After writing up a brief description, we recommend including the following sections.
3+
Views [Apache Parquet](https://parquet.apache.org/) files as JSON.
4+
5+
Requires [parquet-tools](https://github.com/apache/parquet-mr/tree/master/parquet-tools).
46

57
## Features
68

7-
Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
9+
When opening a Parquet file and choosing to "open it anyway" a JSON presentation of the file is displayed:
810

9-
For example if there is an image subfolder under your extension project workspace:
11+
![automatic](images/automatic.gif)
1012

11-
\!\[feature X\]\(images/feature-x.png\)
13+
There's also a command to open the JSON presentation:
1214

13-
> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
15+
![command](images/command.gif)
1416

1517
## Requirements
1618

17-
If you have any requirements or dependencies, add a section describing those and how to install and configure them.
18-
19-
## Extension Settings
20-
21-
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
22-
23-
For example:
24-
25-
This extension contributes the following settings:
26-
27-
* `myExtension.enable`: enable/disable this extension
28-
* `myExtension.thing`: set to `blah` to do something
29-
30-
## Known Issues
31-
32-
Calling out known issues can help limit users opening duplicate issues against your extension.
33-
34-
## Release Notes
35-
36-
Users appreciate release notes as you update your extension.
37-
38-
### 1.0.0
39-
40-
Initial release of ...
41-
42-
### 1.0.1
43-
44-
Fixed issue #.
45-
46-
### 1.1.0
47-
48-
Added features X, Y, and Z.
49-
50-
-----------------------------------------------------------------------------------------------------------
51-
52-
## Working with Markdown
53-
54-
**Note:** You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
55-
56-
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux)
57-
* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux)
58-
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets
59-
60-
### For more information
19+
[parquet-tools](https://github.com/apache/parquet-mr/tree/master/parquet-tools) should be in your PATH.
6120

62-
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
63-
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
21+
### 0.1.0
6422

65-
**Enjoy!**
23+
Initial release

images/automatic.gif

6.06 MB
Loading

images/command.gif

1.05 MB
Loading

images/ico128.png

22.5 KB
Loading

images/ico256.png

67.1 KB
Loading

package.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,36 @@
33
"displayName": "parquet-viewer",
44
"description": "Views Apache Parquet files as JSON",
55
"publisher": "dvirtz",
6-
"version": "0.0.1",
6+
"icon": "images/ico128.png",
7+
"homepage": "https://github.com/dvirtz/vscode-parquet-viewer",
8+
"bugs": {
9+
"url": "https://github.com/dvirtz/vscode-parquet-viewer/issues",
10+
"email": "[email protected]"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/dvirtz/vscode-parquet-viewer.git"
15+
},
16+
"author": {
17+
"name": "Dvir Yitzchaki",
18+
"email": "[email protected]",
19+
"url": "https://github.com/dvirtz"
20+
},
21+
"license": "SEE LICENSE AT LICENSE.txt",
22+
"version": "0.1.0",
723
"engines": {
824
"vscode": "^1.30.0"
925
},
1026
"categories": [
1127
"Other"
1228
],
29+
"keywords": [
30+
"parquet",
31+
"spark",
32+
"viewer"
33+
],
1334
"activationEvents": [
14-
"onLanguage:parquet",
15-
"onFileSystem:file"
35+
"onLanguage:parquet"
1636
],
1737
"main": "./out/extension",
1838
"contributes": {

0 commit comments

Comments
 (0)