vscode-css-languageservice 6.2.4 → 6.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/esm/data/webCustomData.js +112 -116
- package/lib/esm/languageFacts/builtinData.js +1 -1
- package/lib/esm/languageFacts/colors.js +128 -6
- package/lib/esm/parser/cssNodes.js +1 -1
- package/lib/esm/parser/cssParser.js +32 -9
- package/lib/esm/parser/lessParser.js +6 -6
- package/lib/esm/parser/scssParser.js +6 -6
- package/lib/esm/services/cssCompletion.js +4 -11
- package/lib/esm/services/cssNavigation.js +6 -3
- package/lib/esm/services/lessCompletion.js +2 -1
- package/lib/esm/services/lint.js +2 -1
- package/lib/esm/services/scssCompletion.js +2 -1
- package/lib/esm/services/selectorPrinting.js +1 -2
- package/lib/umd/data/webCustomData.js +112 -116
- package/lib/umd/languageFacts/builtinData.js +1 -1
- package/lib/umd/languageFacts/colors.js +130 -7
- package/lib/umd/parser/cssNodes.js +1 -1
- package/lib/umd/parser/cssParser.js +32 -9
- package/lib/umd/parser/lessParser.js +6 -6
- package/lib/umd/parser/scssParser.js +6 -6
- package/lib/umd/services/cssCompletion.js +4 -11
- package/lib/umd/services/cssNavigation.js +6 -3
- package/lib/umd/services/lessCompletion.js +1 -1
- package/lib/umd/services/lint.js +1 -1
- package/lib/umd/services/scssCompletion.js +1 -1
- package/lib/umd/services/selectorPrinting.js +1 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -73,5 +73,5 @@ License
|
|
|
73
73
|
|
|
74
74
|
Copyright 2016, 20 Microsoft
|
|
75
75
|
|
|
76
|
-
With the exceptions of `build/mdn-documentation.js`, which is built upon content from [Mozilla Developer Network](https://developer.mozilla.org/
|
|
76
|
+
With the exceptions of `build/mdn-documentation.js`, which is built upon content from [Mozilla Developer Network](https://developer.mozilla.org/docs/Web)
|
|
77
77
|
and distributed under CC BY-SA 2.5.
|