Skip to content

Commit 2876e59

Browse files
authored
Merge pull request #101 from vycdev/develop
Release 5.0.0
2 parents 03db88d + 53b04f6 commit 2876e59

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+4420
-4005
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
root = true
32

43
[*]

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
patreon: vycdev
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG] - "
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
****
27+
- OS: [e.g. Windows]
28+
- Vscode version: [e.g. 1.105]
29+
- Extension Version: [e.g. 5.0.0]
30+
31+
**Additional context**
32+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[REQUEST] - "
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ dist
1414
node_modules
1515
package-lock.json
1616
out
17+
18+
.todo

.prettierignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
out
3+
.vscode-test
4+
.vscode
5+
resources/**/demo
6+
dist
7+
build
8+
*.min.*
9+
*.map
10+
*.vsix
11+
"**/vendor/**"
12+
13+
resources

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"printWidth": 100,
3+
"tabWidth": 4,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "es5",
8+
"bracketSpacing": true,
9+
"arrowParens": "always",
10+
"endOfLine": "lf"
11+
}

.todo

Lines changed: 0 additions & 9 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run Extension (Clean, Watch)",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"preLaunchTask": "npm: compile:watch",
10+
"presentation": {
11+
"reveal": "silent",
12+
"focus": false,
13+
"panel": "dedicated"
14+
},
15+
"postDebugTask": "terminate build",
16+
"args": [
17+
"--extensionDevelopmentPath=${workspaceFolder}",
18+
"--user-data-dir=${workspaceFolder}/.vscode-dev/user-data",
19+
"--extensions-dir=${workspaceFolder}/.vscode-dev/extensions",
20+
],
21+
"outFiles": ["${workspaceFolder}/out/**/*.js"],
22+
},
23+
],
24+
}

.vscode/tasks.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "npm: compile:watch",
6+
"type": "npm",
7+
"script": "compile:watch",
8+
"isBackground": true,
9+
"group": "build",
10+
"problemMatcher": {
11+
"owner": "webpack",
12+
"pattern": {
13+
"regexp": "^.*$",
14+
},
15+
"background": {
16+
"activeOnStart": true,
17+
"beginsPattern": "webpack is watching the files",
18+
"endsPattern": "Built at: .*",
19+
},
20+
},
21+
},
22+
{
23+
"label": "terminate build",
24+
"command": "${command:workbench.action.tasks.terminate}",
25+
"type": "process",
26+
"problemMatcher": [],
27+
},
28+
],
29+
}

0 commit comments

Comments
 (0)