@codemirror/language-data
Advanced tools
Comparing version 6.0.0 to 6.1.0
@@ -0,1 +1,7 @@ | ||
## 6.1.0 (2022-06-17) | ||
### New features | ||
Add a `LanguageDescription` for Sass. | ||
## 6.0.0 (2022-06-08) | ||
@@ -2,0 +8,0 @@ |
@@ -712,2 +712,9 @@ import { LanguageDescription, LanguageSupport, StreamLanguage } from '@codemirror/language'; | ||
/*@__PURE__*/LanguageDescription.of({ | ||
name: "Sass", | ||
extensions: ["sass"], | ||
load() { | ||
return import('@codemirror/legacy-modes/mode/sass').then(m => legacy(m.sass)); | ||
} | ||
}), | ||
/*@__PURE__*/LanguageDescription.of({ | ||
name: "Scala", | ||
@@ -714,0 +721,0 @@ extensions: ["scala"], |
{ | ||
"name": "@codemirror/language-data", | ||
"version": "6.0.0", | ||
"version": "6.1.0", | ||
"description": "Language metadata and dynamic loading for the CodeMirror code editor", | ||
@@ -43,3 +43,3 @@ "scripts": { | ||
"@codemirror/lang-xml": "^6.0.0", | ||
"@codemirror/legacy-modes": "^6.0.0" | ||
"@codemirror/legacy-modes": "^6.1.0" | ||
}, | ||
@@ -46,0 +46,0 @@ "devDependencies": { |
# @codemirror/language-data [![NPM version](https://img.shields.io/npm/v/@codemirror/language-data.svg)](https://www.npmjs.org/package/@codemirror/language-data) | ||
[ [**WEBSITE**](https://codemirror.net/6/) | [**DOCS**](https://codemirror.net/6/docs/ref/#language-data) | [**ISSUES**](https://github.com/codemirror/codemirror.next/issues) | [**FORUM**](https://discuss.codemirror.net/c/next/) | [**CHANGELOG**](https://github.com/codemirror/language-data/blob/main/CHANGELOG.md) ] | ||
[ [**WEBSITE**](https://codemirror.net/) | [**DOCS**](https://codemirror.net/docs/ref/#language-data) | [**ISSUES**](https://github.com/codemirror/dev/issues) | [**FORUM**](https://discuss.codemirror.net/c/next/) | [**CHANGELOG**](https://github.com/codemirror/language-data/blob/main/CHANGELOG.md) ] | ||
This package implements language metadata and dynamic loading for the | ||
[CodeMirror](https://codemirror.net/6/) code editor. | ||
[CodeMirror](https://codemirror.net/) code editor. | ||
The [project page](https://codemirror.net/6/) has more information, a | ||
number of [examples](https://codemirror.net/6/examples/) and the | ||
[documentation](https://codemirror.net/6/docs/). | ||
The [project page](https://codemirror.net/) has more information, a | ||
number of [examples](https://codemirror.net/examples/) and the | ||
[documentation](https://codemirror.net/docs/). | ||
@@ -12,0 +12,0 @@ This code is released under an |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79748
1995