Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport: Fix dependencies for create-daml-app #13090

Merged
merged 1 commit into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Backport: Fix dependencies for create-daml-app
Backport from #13089

changelog_begin
changelog_end
  • Loading branch information
cocreature committed Feb 25, 2022
commit a59e865f03396f4d9f00496a221fcb59e5437dd5
2 changes: 1 addition & 1 deletion templates/create-daml-app/daml.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source: daml
dependencies:
- daml-prim
- daml-stdlib
- daml-trigger
- daml-script
start-navigator: false
codegen:
js:
Expand Down
5 changes: 3 additions & 2 deletions templates/gsg-trigger.patch
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,16 @@ diff --git create-daml-app/daml/User.daml create-daml-app/daml/User.daml
+-- MESSAGE_END
--- create-daml-app/daml.yaml.template 2022-01-26 17:29:37.149557361 +0100
+++ create-daml-app/daml.yaml.template 2022-01-26 17:29:27.749276386 +0100
@@ -2,10 +2,12 @@
@@ -2,10 +2,13 @@
name: __PROJECT_NAME__
version: 0.1.0
source: daml
+# trigger-dependencies-begin
dependencies:
- daml-prim
- daml-stdlib
- daml-trigger
- daml-script
+- daml-trigger
+# trigger-dependencies-end
start-navigator: false
codegen:
Expand Down