Skip to content

Commit

Permalink
Bump @tailwindcss/language-server from 0.0.9 to 0.0.10 in /language-s…
Browse files Browse the repository at this point in the history
…erver (#48)

* Bump @tailwindcss/language-server in /language-server

Bumps [@tailwindcss/language-server](https://github.com/tailwindlabs/tailwindcss-intellisense/tree/HEAD/packages/tailwindcss-language-server) from 0.0.9 to 0.0.10.
- [Release notes](https://github.com/tailwindlabs/tailwindcss-intellisense/releases)
- [Commits](https://github.com/tailwindlabs/tailwindcss-intellisense/commits/HEAD/packages/tailwindcss-language-server)

---
updated-dependencies:
- dependency-name: "@tailwindcss/language-server"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* add tailwindCSS.experimental.configFile to schema

* add text.jinja to scopes

* add text.html.elixir scope to selector

* Update sublime-package.json

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Предраг Николић <idmpepe@gmail.com>
  • Loading branch information
dependabot[bot] and predragnikolic authored Oct 27, 2022
1 parent 9b422dd commit 29a3c6a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
8 changes: 5 additions & 3 deletions LSP-tailwindcss.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,21 @@
"tailwindCSS.experimental.classRegex": [],
},
// ST4
"selector": "source.jsx | source.js.react | source.js | source.tsx | source.ts | source.css | source.scss | source.less | text.html.vue | text.html.svelte | text.html.basic | text.html.twig | text.blade | embedding.php | text.html.rails | text.html.erb | text.haml",
"selector": "source.jsx | source.js.react | source.js | source.tsx | source.ts | source.css | source.scss | source.less | text.html.vue | text.html.svelte | text.html.basic | text.html.twig | text.blade | embedding.php | text.html.rails | text.html.erb | text.haml | text.jinja | text.html.elixir",
// ST3
"languages": [
{
"languageId": "html",
"scopes": ["text.html.basic", "embedding.php", "text.blade", "text.html.twig"],
"scopes": ["text.html.basic", "embedding.php", "text.blade", "text.html.twig", "text.jinja", "text.html.elixir"],
"syntaxes": [
"Packages/HTML/HTML.sublime-syntax",
"Packages/PHP/PHP.sublime-syntax",
"Packages/PHP/PHP.sublime-syntax",
"Packages/Laravel Blade Highlighter/blade.sublime-syntax",
"Packages/Twig/resources/syntax/Twig.sublime-syntax",
"Packages/Twig/resources/syntax/HTML (Twig).sublime-syntax"
"Packages/Twig/resources/syntax/HTML (Twig).sublime-syntax",
"Packages/Jinja2/resources/syntax/Jinja.sublime-syntax",
"Packages/Elixir/Syntaxes/HTML (EEx).tmLanguage"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions language-server/package-lock.json

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

2 changes: 1 addition & 1 deletion language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "sublime-tailwindcss",
"version": "0.0.0",
"dependencies": {
"@tailwindcss/language-server": "0.0.9"
"@tailwindcss/language-server": "0.0.10"
}
}
12 changes: 11 additions & 1 deletion sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"default": [
"**/.git/**",
"**/node_modules/**",
"**/.hg/**"
"**/.hg/**",
"**/.svn/**"
],
"markdownDescription": "Configure glob patterns to exclude from all IntelliSense features. Inherits all glob patterns from the `#files.exclude#` setting."
},
Expand Down Expand Up @@ -133,6 +134,15 @@
"tailwindCSS.experimental.classRegex": {
"type": "array"
},
"tailwindCSS.experimental.configFile": {
"type": [
"null",
"string",
"object"
],
"default": null,
"markdownDescription": "Manually specify the Tailwind config file or files that should be read to provide IntelliSense features. Can either be a single string value, or an object where each key is a config file path and each value is a glob or array of globs representing the set of files that the config file applies to."
},
"tailwindCSS.showPixelEquivalents": {
"type": "boolean",
"default": true,
Expand Down

0 comments on commit 29a3c6a

Please sign in to comment.