Skip to content

Commit 6ab125c

Browse files
chore(release): 3.0.0 [skip ci]
# [3.0.0](v2.1.0...v3.0.0) (2021-03-04) ### Features * lessen restarts, stabilize, and more opinionated defaults ([#2](#2)) ([6393324](6393324)) ### BREAKING CHANGES * Only left workspace configuration target.
1 parent 6393324 commit 6ab125c

File tree

2 files changed

+41
-7
lines changed

2 files changed

+41
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [3.0.0](https://github.com/LumaKernel/vim-tsdetect/compare/v2.1.0...v3.0.0) (2021-03-04)
2+
3+
4+
### Features
5+
6+
* lessen restarts, stabilize, and more opinionated defaults ([#2](https://github.com/LumaKernel/vim-tsdetect/issues/2)) ([6393324](https://github.com/LumaKernel/vim-tsdetect/commit/6393324e4992ca006e8851a6c62bdf991f0e6827))
7+
8+
9+
### BREAKING CHANGES
10+
11+
* Only left workspace configuration target.
12+
113
# [2.1.0](https://github.com/LumaKernel/vim-tsdetect/compare/v2.0.0...v2.1.0) (2021-02-20)
214

315

package.json

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
22
"name": "coc-tsdetect",
3-
"version": "2.1.0",
3+
"version": "3.0.0",
44
"description": "coc.nvim extensions for detecting node and deno environment.",
5-
"keywords": ["deno", "typescript", "javascript", "neovim", "vim", "coc.nvim"],
5+
"keywords": [
6+
"deno",
7+
"typescript",
8+
"javascript",
9+
"neovim",
10+
"vim",
11+
"coc.nvim"
12+
],
613
"license": "MIT",
714
"author": "Luma",
815
"main": "./out/coc.js",
@@ -55,24 +62,39 @@
5562
"type": "string",
5663
"default": "auto",
5764
"markdownDescription": "How to setup `deno.enabled` and `tsserver.enabled`.\n\n- `\"auto\"` (default): Automatically switching `deno.enabled` and `tsserver.enabled` based on file environment. This is determined whether there is a node_modules directory in one of ancestor directories.\n- `\"auto_user_config\"`: TODO.\n- `\"auto_workspace_config\"`: TODO.\n- `\"manual\"`: coc-tsdetect won't do nothing.\n",
58-
"enum": ["auto", "manual"],
59-
"examples": ["auto", "manual"]
65+
"enum": [
66+
"auto",
67+
"manual"
68+
],
69+
"examples": [
70+
"auto",
71+
"manual"
72+
]
6073
},
6174
"tsdetect.doNotCreateOnNode": {
6275
"type": "boolean",
6376
"default": true,
64-
"examples": [false, true]
77+
"examples": [
78+
false,
79+
true
80+
]
6581
},
6682
"tsdetect.doNothingIfConfigExists": {
6783
"type": "boolean",
6884
"default": true,
69-
"examples": [false, true]
85+
"examples": [
86+
false,
87+
true
88+
]
7089
},
7190
"tsdetect.nodeOverride": {
7291
"type": "object",
7392
"default": {
7493
"deno.lint": false,
75-
"coc.source.file.trimSameExts": [".js", ".ts"],
94+
"coc.source.file.trimSameExts": [
95+
".js",
96+
".ts"
97+
],
7698
"prettier.disableLanguage": []
7799
},
78100
"examples": [

0 commit comments

Comments
 (0)