-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c6d180
commit 542e7b9
Showing
4 changed files
with
60 additions
and
42 deletions.
There are no files selected for viewing
26 changes: 13 additions & 13 deletions
26
components/api/api-javascript/src/main/resources/META-INF/dirigible/kronos/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"name" : "kronos-api", | ||
"private" : true, | ||
"version" : "1.0.0", | ||
"scripts" : { | ||
"transpile" : "rm -rf output && abap_transpile abap_transpile.json", | ||
"lint" : "abaplint --config abaplint.json" | ||
"name": "kronos-api", | ||
"private": true, | ||
"version": "1.0.0", | ||
"scripts": { | ||
"transpile": "rm -rf output && abap_transpile abap_transpile.json", | ||
"lint": "abaplint --config abaplint.json" | ||
}, | ||
"dependencies" : { | ||
"buffer" : "^6.0.3", | ||
"@abaplint/runtime" : "^2.8.27", | ||
"@abaplint/cli" : "^2.110.1", | ||
"@abaplint/transpiler-cli" : "^2.8.27" | ||
"dependencies": { | ||
"buffer": "^6.0.3", | ||
"@abaplint/runtime": "^2.10.9", | ||
"@abaplint/cli": "^2.112.17", | ||
"@abaplint/transpiler-cli": "^2.10.9" | ||
}, | ||
"author" : "codbex", | ||
"license" : "EPL" | ||
"author": "codbex", | ||
"license": "EPL" | ||
} |
34 changes: 17 additions & 17 deletions
34
components/template-abap/src/main/resources/META-INF/dirigible/template-abap/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"name" : "{{projectName}}", | ||
"private" : true, | ||
"version" : "1.0.0", | ||
"scripts" : { | ||
"transpile" : "rm -rf output && abap_transpile abap_transpile.json", | ||
"lint" : "abaplint --config abaplint.json", | ||
"unit" : "npm run transpile && echo RUNNING && node dist/abap/index.mjs && echo OK", | ||
"test" : "npm run lint && npm run unit", | ||
"run" : "node dist/run.mjs" | ||
"name": "{{projectName}}", | ||
"private": true, | ||
"version": "1.0.0", | ||
"scripts": { | ||
"transpile": "rm -rf output && abap_transpile abap_transpile.json", | ||
"lint": "abaplint --config abaplint.json", | ||
"unit": "npm run transpile && echo RUNNING && node dist/abap/index.mjs && echo OK", | ||
"test": "npm run lint && npm run unit", | ||
"run": "node dist/run.mjs" | ||
}, | ||
"dependencies" : { | ||
"buffer" : "^6.0.3", | ||
"@abaplint/runtime" : "^2.8.27", | ||
"@abaplint/cli" : "^2.110.1", | ||
"@abaplint/transpiler-cli" : "^2.8.27" | ||
"dependencies": { | ||
"buffer": "^6.0.3", | ||
"@abaplint/runtime": "^2.10.9", | ||
"@abaplint/cli": "^2.112.17", | ||
"@abaplint/transpiler-cli": "^2.10.9" | ||
}, | ||
"author" : "", | ||
"license" : "EPL" | ||
} | ||
"author": "", | ||
"license": "EPL" | ||
} |
34 changes: 24 additions & 10 deletions
34
components/template-abap/src/main/resources/META-INF/dirigible/template-abap/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,33 @@ | ||
{ | ||
"guid" : "{{projectName}}", | ||
"actions" : [ | ||
"guid": "{{projectName}}", | ||
"actions": [ | ||
{ | ||
"name" : "build", | ||
"commands" : [ | ||
"name": "Transpile ABAP", | ||
"commands": [ | ||
{ | ||
"os" : "mac", | ||
"command" : "sh build-mac.sh" | ||
"os": "mac", | ||
"command": "sh build-mac.sh" | ||
}, | ||
{ | ||
"os" : "linux", | ||
"command" : "sh build-linux.sh" | ||
"os": "linux", | ||
"command": "sh build-linux.sh" | ||
} | ||
], | ||
"publish" : "true" | ||
"publish": "true" | ||
}, | ||
{ | ||
"name": "Build TypeScript", | ||
"commands": [ | ||
{ | ||
"os": "unix", | ||
"command": "tsc" | ||
}, | ||
{ | ||
"os": "windows", | ||
"command": "cmd /c tsc" | ||
} | ||
], | ||
"registry": "true" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters