You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please make sure git commit messages conform to the [conventionalcommits](https://www.conventionalcommits.org/en/v1.0.0/) specification.
15
+
16
+
Make and commit your changes. Make sure the commands npm run build and npm run test are working and coverage remains high.
17
+
18
+
Finally send a [GitHub Pull Request](https://github.com/dev-warner/post-card/compare?expand=1) with a clear list of what you've done (read more [about pull requests](https://help.github.com/articles/about-pull-requests/)). Make sure all of your commits are atomic (one feature per commit).
Sometimes you might not want the same template for each item but still want to batch them together.
66
+
67
+
```typescript
68
+
awaitgenerate(Template, [
69
+
{ output: 'media/first-image.jpg', data: {} },
70
+
{
71
+
output: 'media/second-image.jpg',
72
+
data: {},
73
+
options: { templateOveride: FancyTemplate },
74
+
},
75
+
])
76
+
```
77
+
105
78
## Creating Templates
106
79
107
-
### Basic
80
+
Creating template is an easy process, if you've ever worked with html canvas, creating templates should be a breeze, and we provide some utils to smooth out the process.
81
+
82
+
For more information: [Templates](https://github.com/dev-warner/post-card-templates)
0 commit comments