create-canton-app 1.4.0 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-canton-app",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Scaffold Canton Network/Daml projects in seconds",
5
5
  "main": "bin/create-canton-app.js",
6
6
  "repository": {
@@ -139,9 +139,9 @@ async function create(projectName, options) {
139
139
  name: 'template',
140
140
  message: 'Which template would you like to use?',
141
141
  choices: [
142
- { name: '🪙 Token Contract (fungible token like ERC20)', value: 'token' },
143
- { name: '🤝 Escrow Contract (multi-party escrow)', value: 'escrow' },
144
- { name: '📄 Empty Template (blank starter)', value: 'empty' }
142
+ { name: 'Token Contract (fungible token like ERC20)', value: 'token' },
143
+ { name: 'Escrow Contract (multi-party escrow)', value: 'escrow' },
144
+ { name: 'Empty Template (blank starter)', value: 'empty' }
145
145
  ]
146
146
  }
147
147
  ]);