-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
24 lines (24 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "demo_rename",
"version": "1.0.0",
"description": "Example Renaming Magic",
"repository": {
"type": "git",
"url": "git+https://github.com/abap2UI5/mirror-demo-abap2UI5"
},
"license": "MIT",
"homepage": "https://github.com/abap2UI5/mirror-demo-abap2UI5#readme",
"dependencies": {
"@abaplint/cli": "^2.113.100",
"js-yaml": "^4.1.0",
"xml2js": "^0.6.2"
},
"scripts" : {
"build": "npm run clone && npm run rename && npm run abaplint",
"clone": "node ./build/build.js --config ./setup/build.jsonc && rm -rf input",
"rename": "npx abaplint ./setup/rename.jsonc --rename",
"abaplint": "cp ./setup/abaplint.jsonc dist && cd dist && npx abaplint && cd ..",
"branch": "find . -mindepth 1 -not -name 'dist' -not -path './dist/*' -not -name '.git' -not -path './.git/*' -delete && cp -r dist/* . && rm -r dist",
"rename_frontend": "node ./build/frontend_renaming/copy_rename.js && cd build/frontend_renaming && node replace_hashes.js && cd ../.. && node ./build/frontend_renaming/replace_icf_service.js && rm -rf dist/src/05"
}
}