Skip to content

Commit

Permalink
Merge pull request #11 from HexmosTech/origin/update-version-prompt
Browse files Browse the repository at this point in the history
Update version prompt if l2 binary below v1.5.1
  • Loading branch information
shrsv authored Jul 26, 2023
2 parents 975913b + d69f38a commit 0d33a12
Show file tree
Hide file tree
Showing 12 changed files with 471 additions and 3,373 deletions.
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

0 comments on commit 0d33a12

Please sign in to comment.