Bump version of vscode-manifest-yaml to 0.0.3

This commit is contained in:
Kris De Volder
2017-02-02 00:31:27 +00:00
committed by git
parent 51b8dca4ab
commit 9c6ce89abc

View File

@@ -3,7 +3,7 @@
"displayName": "Cloudfoundry Manifest YML Support",
"description": "Adds linting, content assist and hoverinfo's for Cloudfoundry Deployment Manifests (a.k.a. `manifest.yml`) files.",
"icon": "icon.png",
"version": "0.0.2",
"version": "0.0.3",
"publisher": "Pivotal",
"repository": {
"type": "git",
@@ -39,15 +39,19 @@
"configuration": "./yaml-support/language-configuration.json"
}
],
"grammars": [{
"language": "manifest-yaml",
"scopeName": "source.yaml",
"path": "./yaml-support/yaml.tmLanguage"
}],
"snippets": [{
"language": "manifest-yaml",
"path": "./snippets.json"
}]
"grammars": [
{
"language": "manifest-yaml",
"scopeName": "source.yaml",
"path": "./yaml-support/yaml.tmLanguage"
}
],
"snippets": [
{
"language": "manifest-yaml",
"path": "./snippets.json"
}
]
},
"main": "./out/lib/Main",
"scripts": {