Skip to content

Commit

Permalink
chore(release): 3.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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.
  • Loading branch information
semantic-release-bot committed Mar 4, 2021
1 parent 6393324 commit 6ab125c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [3.0.0](https://github.com/LumaKernel/vim-tsdetect/compare/v2.1.0...v3.0.0) (2021-03-04)


### Features

* 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))


### BREAKING CHANGES

* Only left workspace configuration target.

# [2.1.0](https://github.com/LumaKernel/vim-tsdetect/compare/v2.0.0...v2.1.0) (2021-02-20)


Expand Down
36 changes: 29 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
{
"name": "coc-tsdetect",
"version": "2.1.0",
"version": "3.0.0",
"description": "coc.nvim extensions for detecting node and deno environment.",
"keywords": ["deno", "typescript", "javascript", "neovim", "vim", "coc.nvim"],
"keywords": [
"deno",
"typescript",
"javascript",
"neovim",
"vim",
"coc.nvim"
],
"license": "MIT",
"author": "Luma",
"main": "./out/coc.js",
Expand Down Expand Up @@ -55,24 +62,39 @@
"type": "string",
"default": "auto",
"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",
"enum": ["auto", "manual"],
"examples": ["auto", "manual"]
"enum": [
"auto",
"manual"
],
"examples": [
"auto",
"manual"
]
},
"tsdetect.doNotCreateOnNode": {
"type": "boolean",
"default": true,
"examples": [false, true]
"examples": [
false,
true
]
},
"tsdetect.doNothingIfConfigExists": {
"type": "boolean",
"default": true,
"examples": [false, true]
"examples": [
false,
true
]
},
"tsdetect.nodeOverride": {
"type": "object",
"default": {
"deno.lint": false,
"coc.source.file.trimSameExts": [".js", ".ts"],
"coc.source.file.trimSameExts": [
".js",
".ts"
],
"prettier.disableLanguage": []
},
"examples": [
Expand Down

0 comments on commit 6ab125c

Please sign in to comment.