-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapax.yml
48 lines (48 loc) · 1.18 KB
/
apax.yml
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
38
39
40
41
42
43
44
45
46
47
48
# General information
name: "@simatic-ax/statemachine"
version: 0.0.0-placeholder
author: Siemens AG
# Description will be displayed in the apax extension
description: Library to create state machines according an OOP state pattern
# Workspace type library and target definition
type: lib
targets:
- '1500'
- 'llvm'
# URL to repository
repository:
type: git
url: https://github.com/simatic-ax/statemachine
# Registry information, where the package will be published
registries:
'@simatic-ax': 'https://npm.pkg.github.com/'
# Local variables
variables:
APAX_BUILD_ARGS:
- '--debug'
# Install settings
installStrategy: strict
apaxVersion: 3.2.1
# Dependencies
devDependencies:
'@ax/sdk': 2411.0.0
"@simatic-ax/snippetscollection": 1.0.0
dependencies:
"@ax/system-timer": ^8.0.7
# Files, which will be shipped with the library
files:
- 'README.md'
- 'LICENSE.md'
- 'doc'
- 'src' # ship library with source
# - 'bin/1500/' # ship library with binary
# Apax scripts
scripts:
publishlib:
- apax publish --package *.apax.tgz --registry 'https://npm.pkg.github.com/'
- rm *.apax.tgz -f
createpackage:
- apax build
- apax test
- apax version $1
- apax pack