Skip to content

Commit

Permalink
fix: Unable to override default eclcc version
Browse files Browse the repository at this point in the history
Regression caused by scope change in package.json

Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed May 17, 2022
1 parent 4e95f38 commit 0c17947
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@
"properties": {
"ecl.eclccArgs": {
"type": "array",
"scope": "application",
"scope": "resource",
"items": {
"type": "string"
},
Expand All @@ -873,7 +873,7 @@
},
"ecl.eclccSyntaxArgs": {
"type": "array",
"scope": "application",
"scope": "resource",
"items": {
"type": "string"
},
Expand All @@ -882,31 +882,31 @@
},
"ecl.syntaxCheckOnSave": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": true,
"description": "%Run 'eclcc -syntax' on save%"
},
"ecl.syntaxCheckOnLoad": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": true,
"description": "%Run 'eclcc -syntax' on load%"
},
"ecl.saveOnSyntaxCheck": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Save file prior to syntax check%"
},
"ecl.saveOnSubmit": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Save file prior to submission%"
},
"ecl.includeFolders": {
"type": "array",
"scope": "application",
"scope": "resource",
"items": {
"type": "string"
},
Expand All @@ -915,19 +915,19 @@
},
"ecl.eclccPath": {
"type": "string",
"scope": "application",
"scope": "resource",
"default": "",
"description": "%Override eclcc auto detection%"
},
"ecl.eclccLogFile": {
"type": "string",
"scope": "application",
"scope": "resource",
"default": "",
"description": "%Write eclcc log file to specified file%"
},
"ecl.legacyMode": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Add '-legacy' argument to eclcc%"
},
Expand All @@ -939,37 +939,37 @@
},
"ecl.launchConfiguration": {
"type": "string",
"scope": "application",
"scope": "resource",
"default": "",
"description": "%Default launch configuration%"
},
"ecl.targetCluster": {
"type": "object",
"scope": "application",
"scope": "resource",
"default": {},
"description": "%Target cluster (per launch configuration)%"
},
"ecl.pinnedLaunchConfigurations": {
"type": "object",
"scope": "application",
"scope": "resource",
"default": {},
"description": "%Pinned launch configurations%"
},
"ecl.WUAutoOpen": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Automatically open Workunits on creation%"
},
"ecl.forceProxySupport": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Force global 'proxySupport' to 'fallback'%"
},
"dashy.libraryLocation": {
"type": "string",
"scope": "application",
"scope": "resource",
"enum": [
"latest",
"localPath"
Expand All @@ -979,7 +979,7 @@
},
"dashy.localPath": {
"type": "string",
"scope": "application",
"scope": "resource",
"default": "",
"description": "%Dashy Library Path (libraryLocation === \"localPath\")%"
},
Expand All @@ -993,19 +993,19 @@
},
"kel.kelPath": {
"type": "string",
"scope": "application",
"scope": "resource",
"default": "",
"description": "%Override KEL auto detection%"
},
"kel.syntaxCheckOnSave": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": true,
"description": "%Check syntax on save%"
},
"kel.generateLocation": {
"type": "string",
"scope": "application",
"scope": "resource",
"enum": [
"Same Folder",
"Child Folder"
Expand All @@ -1015,19 +1015,19 @@
},
"kel.generateOnSave": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Generate ECL on save%"
},
"kel.syntaxCheckOnLoad": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": true,
"description": "%Check syntax on load%"
},
"kel.syntaxCheckFromGrammar": {
"type": "boolean",
"scope": "application",
"scope": "resource",
"default": false,
"description": "%Check syntax with KEL grammar (fast)%"
}
Expand Down

0 comments on commit 0c17947

Please sign in to comment.