mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
6a328212f2
This executes the code generations specified in the daml.yaml configuration file on every invocation of `daml start` and hence frees the user of doing it manually. CHANGELOG_BEGIN - [DAML Assistant] The `daml start` now runs all the code generators specified in the `daml.yaml` project configuration file under the `codegen` stanza. This frees the user of doing so manually on every change to the DAML model. CHANGELOG_END
21 lines
333 B
Plaintext
21 lines
333 B
Plaintext
sdk-version: __VERSION__
|
|
name: __PROJECT_NAME__
|
|
version: 0.1.0
|
|
source: daml
|
|
parties:
|
|
- Alice
|
|
- Bob
|
|
- Charlie
|
|
dependencies:
|
|
- daml-prim
|
|
- daml-stdlib
|
|
- daml-trigger
|
|
sandbox-options:
|
|
- --wall-clock-time
|
|
- --ledgerid=__PROJECT_NAME__-sandbox
|
|
start-navigator: false
|
|
codegen:
|
|
js:
|
|
output-directory: ui/daml.js
|
|
npm-scope: daml.js
|