vscode-css-languageservice 6.2.11 → 6.2.13

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.
@@ -1,5 +1,5 @@
1
1
  // copied from js-beautify/js/lib/beautify-css.js
2
- // version: 1.14.11
2
+ // version: 1.15.1
3
3
  /* AUTO-GENERATED. DO NOT MODIFY. */
4
4
  /*
5
5
 
@@ -570,10 +570,10 @@ function Options(options, merge_child_field) {
570
570
 
571
571
  this.indent_empty_lines = this._get_boolean('indent_empty_lines');
572
572
 
573
- // valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty']
574
- // For now, 'auto' = all off for javascript, all on for html (and inline javascript).
573
+ // valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty', 'angular']
574
+ // For now, 'auto' = all off for javascript, all except angular on for html (and inline javascript/css).
575
575
  // other values ignored
576
- this.templating = this._get_selection_list('templating', ['auto', 'none', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
576
+ this.templating = this._get_selection_list('templating', ['auto', 'none', 'angular', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
577
577
  }
578
578
 
579
579
  Options.prototype._get_array = function(name, default_value) {