Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimist from 1.2.5 to 1.2.6 #39

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
Empty file.
14 changes: 1 addition & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
# Json for Visual Studio Code

## Version 2.0.2 November 08, 2020

### New Features

- /

### Bug Fixes

- Fix repository url and readme.

---

## Version 2.0.1 September 05, 2020

### New Features
Expand All @@ -20,7 +8,7 @@

### Bug Fixes

- Fix node.children is not iterable.
- Fix node.children is not iterable

---

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Json for Visual Studio Code
[![VisualStudioMarketplace](https://img.shields.io/badge/VisualStudioMarketplace-v2.0.2-orange.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json)
[![Downloads](https://img.shields.io/badge/Downloads-305k%2B-brightgreen.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json)
[![UpdateTime](https://img.shields.io/badge/UpdateTime-2020%2F11%2F08%2013%3A04%3A30-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json)
[![VisualStudioMarketplace](https://img.shields.io/badge/VisualStudioMarketplace-v2.0.1-orange.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json)
[![Downloads](https://img.shields.io/badge/Downloads-257k%2B-brightgreen.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json)
[![UpdateTime](https://img.shields.io/badge/UpdateTime-2020%2F09%2F05%2000%3A15%3A30-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json)

This extension adds json support for Visual Studio Code.

# About

GitHub: https://github.com/ZainChen/vscode-json

<p align="right">vscode-json <strong>v2.0.2</strong></p>
<p align="right">vscode-json <strong>v2.0.1</strong></p>
<p align="center"><img src="https://raw.githubusercontent.com/ZainChen/vscode-json/master/assets/json-z.png" alt="omi" width="300"/></p>
<h2 align="center">vscode-json</h2>

Expand Down
Binary file removed json-2.0.2.vsix
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "json",
"displayName": "json",
"description": "Json for Visual Studio Code",
"version": "2.0.2",
"version": "2.0.1",
"publisher": "ZainChen",
"homepage": "https://github.com/ZainChen/vscode-json#readme",
"bugs": {
"url": "https://github.com/ZainChen/vscode-json/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ZainChen/vscode-json"
"url": "git+https://github.com/ZainChen/vscode-json.git"
},
"license": "MIT",
"author": "ZainChen <[email protected]>",
Expand Down
53 changes: 53 additions & 0 deletions resources/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
adda
abcd
add
{
"type": "R-Debugger",
"name": "Launch R-Workspace",
"request": "launch",
"debugMode": "workspace",
"workingDirectory": "${workspaceFolder}"
},
{
"type": "R-Debugger",
"name": "Debug R-File",
"request": "launch",
"debugMode": "file",
"workingDirectory": "${workspaceFolder}",
"file": "${file}"
},
{
"type": "R-Debugger",
"name": "Debug R-Function",
"request": "launch",
"debugMode": "function",
"workingDirectory": "${workspaceFolder}",
"file": "${file}",
"mainFunction": "main",
"allowGlobalDebugging": false
},
{
"type": "R-Debugger",
"name": "Debug R-Package",
"request": "launch",
"debugMode": "workspace",
"workingDirectory": "${workspaceFolder}",
"includePackageScopes": true,
"loadPackages": [
"."
]
},
{
"type": "R-Debugger",
"request": "attach",
"name": "Attach to R process",
"splitOverwrittenOutput": true
}
]
}