-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapax.yml
More file actions
37 lines (37 loc) · 1.08 KB
/
apax.yml
File metadata and controls
37 lines (37 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "@inxton/ax.axopen.min"
version: '0.0.0-dev.0'
type: generic
files:
- apax.yml
registries:
"@inxton": "https://npm.pkg.github.com/"
catalogs:
"@inxton/ax.catalog": 0.0.46
devDependencies:
"@inxton/ax-sdk": '0.0.0-dev.0'
dependencies:
"@ax/system-strings": 10.3.25
installStrategy: strict
apaxVersion: 3.5.0
scripts:
ib: |
START=$(date +%s)
apax install
apax build
dotnet ixc
echo $(date +%D)"-"$(date +%H)":"$(date +%M)":"$(date +%S) " - 'apax ib' Finished in :" $(expr $(date +%s) - $START) "s"
icb: |
START=$(date +%s)
apax install --catalog --strict
apax ib
echo $(date +%D)"-"$(date +%H)":"$(date +%M)":"$(date +%S) " - 'apax icb' Finished in :" $(expr $(date +%s) - $START) "s"
cib: |
START=$(date +%s)
apax clean
apax ib
echo $(date +%D)"-"$(date +%H)":"$(date +%M)":"$(date +%S) " - 'apax cib' Finished in :" $(expr $(date +%s) - $START) "s"
cicb: |
START=$(date +%s)
apax clean
apax icb
echo $(date +%D)"-"$(date +%H)":"$(date +%M)":"$(date +%S) " - 'apax cicb' Finished in :" $(expr $(date +%s) - $START) "s"