Skip to content

Commit e94da66

Browse files
chore: release v0.2.3 (#10)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 84fae87 commit e94da66

File tree

2 files changed

+131
-124
lines changed

2 files changed

+131
-124
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### [0.2.3](https://www.github.com/readthedocs-fr/bin-client-vscode/compare/v0.2.2...v0.2.3) (2021-08-06)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* update links and doc ([84fae87](https://www.github.com/readthedocs-fr/bin-client-vscode/commit/84fae87b1231fbbc1788c56f8f081b4c7589bef4))
9+
310
### [0.2.2](https://www.github.com/readthedocs-fr/bin-client-vscode/compare/v0.2.1...v0.2.2) (2021-07-31)
411

512

package.json

Lines changed: 124 additions & 124 deletions
Original file line numberDiff line numberDiff line change
@@ -1,126 +1,126 @@
11
{
2-
"name": "rtdbin",
3-
"displayName": "Read The Bin",
4-
"publisher": "readthedocs",
5-
"description": "An extension to easily create bins.",
6-
"version": "0.2.2",
7-
"icon": "media/icon.png",
8-
"main": "build/extension.js",
9-
"prettier": "@typescord/prettier-config",
10-
"scripts": {
11-
"vscode:prepublish": "yarn build",
12-
"deploy-ovsx": "ovsx publish",
13-
"package": "vsce package --yarn -o bin.vsix",
14-
"build": "tsc",
15-
"watch": "tsc -w",
16-
"lint": "eslint src --ext ts",
17-
"lint-fix": "yarn lint --fix",
18-
"format": "prettier . --write"
19-
},
20-
"author": "Read The Docs FR",
21-
"engines": {
22-
"vscode": "^1.52.0"
23-
},
24-
"license": "MIT",
25-
"homepage": "https://github.com/readthedocs-fr/bin-client-vscode#readme",
26-
"repository": {
27-
"type": "git",
28-
"url": "git+https://github.com/readthedocs-fr/bin-client-vscode.git"
29-
},
30-
"bugs": {
31-
"url": "https://github.com/readthedocs-fr/bin-client-discord/issues"
32-
},
33-
"activationEvents": [
34-
"onCommand:rtdbin.createBin"
35-
],
36-
"contributes": {
37-
"commands": [
38-
{
39-
"command": "rtdbin.createBin",
40-
"title": "Create a bin",
41-
"category": "Bin",
42-
"enablement": "activeEditor || activePanel == 'workbench.panel.output' || explorerViewletVisible && !explorerResourceIsFolder"
43-
}
44-
],
45-
"keybindings": [
46-
{
47-
"command": "rtdbin.createBin",
48-
"key": "ctrl+; h",
49-
"when": "activeEditor || activePanel == 'workbench.panel.output'"
50-
}
51-
],
52-
"menus": {
53-
"commandPalette": [
54-
{
55-
"command": "rtdbin.createBin",
56-
"title": "Create a bin",
57-
"category": "Bin",
58-
"when": "activeEditor || activePanel == 'workbench.panel.output'"
59-
}
60-
],
61-
"explorer/context": [
62-
{
63-
"command": "rtdbin.createBin",
64-
"group": "5_cutcopypaste",
65-
"when": "!explorerResourceIsFolder"
66-
}
67-
],
68-
"editor/context": [
69-
{
70-
"command": "rtdbin.createBin",
71-
"group": "9_cutcopypaste",
72-
"when": "editorTextFocus"
73-
}
74-
]
75-
},
76-
"configuration": {
77-
"title": "Read The Bin",
78-
"properties": {
79-
"rtdbin.defaultLifetime": {
80-
"type": "string",
81-
"default": "0",
82-
"pattern": "^[\\ddhms]+$",
83-
"markdownDescription": "The default lifetime of your futures bins (0 for never, else in this format: 1d1h1m1s)"
84-
},
85-
"rtdbin.defaultMaxUses": {
86-
"type": "integer",
87-
"default": "0",
88-
"description": "The default max uses of your futures bins (0 for infinity)"
89-
}
90-
}
91-
}
92-
},
93-
"categories": [
94-
"Other"
95-
],
96-
"dependencies": {
97-
"form-data": "^4.0.0",
98-
"got": "^11.8.2"
99-
},
100-
"devDependencies": {
101-
"@types/node": "^15.0.2",
102-
"@types/vscode": "^1.52.0",
103-
"@typescord/eslint-config": "^0.2.1",
104-
"@typescord/prettier-config": "^0.1.2",
105-
"@typescript-eslint/eslint-plugin": "^4.22.1",
106-
"@typescript-eslint/parser": "^4.22.1",
107-
"eslint": "^7.26.0",
108-
"eslint-config-prettier": "^8.3.0",
109-
"eslint-import-resolver-node": "^0.3.4",
110-
"eslint-plugin-import": "^2.22.1",
111-
"eslint-plugin-prettier": "^3.4.0",
112-
"eslint-plugin-simple-import-sort": "^7.0.0",
113-
"eslint-plugin-sonarjs": "^0.7.0",
114-
"eslint-plugin-unicorn": "^32.0.1",
115-
"ovsx": "0.1.0",
116-
"prettier": "^2.3.0",
117-
"rimraf": "^3.0.2",
118-
"typescript": "~4.2.4",
119-
"vsce": "^1.84.0"
120-
},
121-
"keywords": [
122-
"bin",
123-
"rtdbin",
124-
"pastebin"
125-
]
2+
"name": "rtdbin",
3+
"displayName": "Read The Bin",
4+
"publisher": "readthedocs",
5+
"description": "An extension to easily create bins.",
6+
"version": "0.2.3",
7+
"icon": "media/icon.png",
8+
"main": "build/extension.js",
9+
"prettier": "@typescord/prettier-config",
10+
"scripts": {
11+
"vscode:prepublish": "yarn build",
12+
"deploy-ovsx": "ovsx publish",
13+
"package": "vsce package --yarn -o bin.vsix",
14+
"build": "tsc",
15+
"watch": "tsc -w",
16+
"lint": "eslint src --ext ts",
17+
"lint-fix": "yarn lint --fix",
18+
"format": "prettier . --write"
19+
},
20+
"author": "Read The Docs FR",
21+
"engines": {
22+
"vscode": "^1.52.0"
23+
},
24+
"license": "MIT",
25+
"homepage": "https://github.com/readthedocs-fr/bin-client-vscode#readme",
26+
"repository": {
27+
"type": "git",
28+
"url": "git+https://github.com/readthedocs-fr/bin-client-vscode.git"
29+
},
30+
"bugs": {
31+
"url": "https://github.com/readthedocs-fr/bin-client-discord/issues"
32+
},
33+
"activationEvents": [
34+
"onCommand:rtdbin.createBin"
35+
],
36+
"contributes": {
37+
"commands": [
38+
{
39+
"command": "rtdbin.createBin",
40+
"title": "Create a bin",
41+
"category": "Bin",
42+
"enablement": "activeEditor || activePanel == 'workbench.panel.output' || explorerViewletVisible && !explorerResourceIsFolder"
43+
}
44+
],
45+
"keybindings": [
46+
{
47+
"command": "rtdbin.createBin",
48+
"key": "ctrl+; h",
49+
"when": "activeEditor || activePanel == 'workbench.panel.output'"
50+
}
51+
],
52+
"menus": {
53+
"commandPalette": [
54+
{
55+
"command": "rtdbin.createBin",
56+
"title": "Create a bin",
57+
"category": "Bin",
58+
"when": "activeEditor || activePanel == 'workbench.panel.output'"
59+
}
60+
],
61+
"explorer/context": [
62+
{
63+
"command": "rtdbin.createBin",
64+
"group": "5_cutcopypaste",
65+
"when": "!explorerResourceIsFolder"
66+
}
67+
],
68+
"editor/context": [
69+
{
70+
"command": "rtdbin.createBin",
71+
"group": "9_cutcopypaste",
72+
"when": "editorTextFocus"
73+
}
74+
]
75+
},
76+
"configuration": {
77+
"title": "Read The Bin",
78+
"properties": {
79+
"rtdbin.defaultLifetime": {
80+
"type": "string",
81+
"default": "0",
82+
"pattern": "^[\\ddhms]+$",
83+
"markdownDescription": "The default lifetime of your futures bins (0 for never, else in this format: 1d1h1m1s)"
84+
},
85+
"rtdbin.defaultMaxUses": {
86+
"type": "integer",
87+
"default": "0",
88+
"description": "The default max uses of your futures bins (0 for infinity)"
89+
}
90+
}
91+
}
92+
},
93+
"categories": [
94+
"Other"
95+
],
96+
"dependencies": {
97+
"form-data": "^4.0.0",
98+
"got": "^11.8.2"
99+
},
100+
"devDependencies": {
101+
"@types/node": "^15.0.2",
102+
"@types/vscode": "^1.52.0",
103+
"@typescord/eslint-config": "^0.2.1",
104+
"@typescord/prettier-config": "^0.1.2",
105+
"@typescript-eslint/eslint-plugin": "^4.22.1",
106+
"@typescript-eslint/parser": "^4.22.1",
107+
"eslint": "^7.26.0",
108+
"eslint-config-prettier": "^8.3.0",
109+
"eslint-import-resolver-node": "^0.3.4",
110+
"eslint-plugin-import": "^2.22.1",
111+
"eslint-plugin-prettier": "^3.4.0",
112+
"eslint-plugin-simple-import-sort": "^7.0.0",
113+
"eslint-plugin-sonarjs": "^0.7.0",
114+
"eslint-plugin-unicorn": "^32.0.1",
115+
"ovsx": "0.1.0",
116+
"prettier": "^2.3.0",
117+
"rimraf": "^3.0.2",
118+
"typescript": "~4.2.4",
119+
"vsce": "^1.84.0"
120+
},
121+
"keywords": [
122+
"bin",
123+
"rtdbin",
124+
"pastebin"
125+
]
126126
}

0 commit comments

Comments
 (0)