Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version prompt if l2 binary below v1.5.1 #11

Merged
merged 11 commits into from
Jul 26, 2023
38 changes: 16 additions & 22 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": ["out", "dist", "**/*.d.ts"]
}
57 changes: 34 additions & 23 deletions http/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,36 @@
{
"name": "l2",
"displayName": "l2",
"description": "Utilties and support for working with Lama2",
"version": "0.0.1",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages"
"name": "l2",
"displayName": "l2",
"description": "Utilties and support for working with Lama2",
"version": "0.0.1",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "l2",
"aliases": [
"l2",
"lama2"
],
"extensions": [
".l2",
".lama",
".lama2"
],
"configuration": "./language-configuration.json"
}
],
"contributes": {
"languages": [{
"id": "l2",
"aliases": ["l2", "lama2"],
"extensions": [".l2", ".lama", ".lama2"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "lama2",
"scopeName": "source.http",
"path": "./syntaxes/http.tmLanguage.json"
}]
}
}
"grammars": [
{
"language": "lama2",
"scopeName": "source.http",
"path": "./syntaxes/http.tmLanguage.json"
}
]
}
}
Loading