Skip to content

Commit

Permalink
Update server (#33)
Browse files Browse the repository at this point in the history
* update server from 0.7.4 to 0.7.7

* add new settings

* add new setting to sublime settings file

* remove tailwindCSS.inspectPort
  • Loading branch information
predragnikolic authored Mar 12, 2022
1 parent bdd530d commit f8da7c5
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 20 deletions.
5 changes: 5 additions & 0 deletions LSP-tailwindcss.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"tailwindCSS.colorDecorators": true,
"tailwindCSS.emmetCompletions": false,
"tailwindCSS.includeLanguages": {},
"tailwindCSS.files.exclude": [
"**/.git/**",
"**/node_modules/**",
"**/.hg/**"
],
"tailwindCSS.classAttributes": [
"class",
"className",
Expand Down
14 changes: 7 additions & 7 deletions language-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 13 additions & 1 deletion language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"preview": true,
"author": "Brad Cornes <hello@bradley.dev>",
"license": "MIT",
"version": "0.7.4",
"version": "0.7.7",
"homepage": "https://github.com/tailwindlabs/tailwindcss-intellisense",
"bugs": {
"url": "https://github.com/tailwindlabs/tailwindcss-intellisense/issues",
Expand Down Expand Up @@ -119,6 +119,18 @@
"default": {},
"markdownDescription": "Enable features in languages that are not supported by default. Add a mapping here between the new language and an already supported language.\n E.g.: `{\"plaintext\": \"html\"}`"
},
"tailwindCSS.files.exclude": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/.git/**",
"**/node_modules/**",
"**/.hg/**"
],
"markdownDescription": "Configure glob patterns to exclude from all IntelliSense features. Inherits all glob patterns from the `#files.exclude#` setting."
},
"tailwindCSS.classAttributes": {
"type": "array",
"items": {
Expand Down
24 changes: 12 additions & 12 deletions language-server/server/tailwindServer.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@
"default": {},
"markdownDescription": "Enable features in languages that are not supported by default. Add a mapping here between the new language and an already supported language.\n E.g.: `{\"plaintext\": \"html\"}`"
},
"tailwindCSS.files.exclude": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/.git/**",
"**/node_modules/**",
"**/.hg/**"
],
"markdownDescription": "Configure glob patterns to exclude from all IntelliSense features. Inherits all glob patterns from the `#files.exclude#` setting."
},
"tailwindCSS.classAttributes": {
"type": "array",
"items": {
Expand Down

0 comments on commit f8da7c5

Please sign in to comment.