This commit is contained in:
@ -0,0 +1,19 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
var updateGrammar = require('vscode-grammar-updater');
|
||||
|
||||
function adaptLess(grammar) {
|
||||
grammar.name = 'Less';
|
||||
grammar.scopeName = 'source.css.less';
|
||||
}
|
||||
|
||||
async function updateGrammars() {
|
||||
await updateGrammar.update('radium-v/Better-Less', 'Syntaxes/Better%20Less.tmLanguage', './syntaxes/less.tmLanguage.json', adaptLess, 'master');
|
||||
}
|
||||
|
||||
updateGrammars();
|
||||
|
Reference in New Issue
Block a user