mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
7a5bca9faf
it should avoid to have "warning XXX: No license field" during yarn build Signed-off-by: Aurélien Pupier <apupier@redhat.com>
31 lines
837 B
JSON
31 lines
837 B
JSON
{
|
|
"name": "groovy",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "groovy",
|
|
"aliases": ["Groovy", "groovy"],
|
|
"extensions": [".groovy", ".gvy", ".gradle"],
|
|
"filenames": [ "Jenkinsfile" ],
|
|
"firstLine": "^#!.*\\bgroovy\\b",
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "groovy",
|
|
"scopeName": "source.groovy",
|
|
"path": "./syntaxes/groovy.tmLanguage.json"
|
|
}],
|
|
"snippets": [{
|
|
"language": "groovy",
|
|
"path": "./snippets/groovy.json"
|
|
}]
|
|
}
|
|
}
|