Skip to content

Commit dfe2520

Browse files
committed
fix template
1 parent c14fff3 commit dfe2520

4 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
with:
2222
node-version: '22'
2323
- run: npm install -g pnpm@10.12.2
24+
- run: node --experimental-strip-types scripts/generate.ts
2425
- run: pnpm install
2526
- run: pnpm test:unit
2627

@@ -33,6 +34,7 @@ jobs:
3334
with:
3435
node-version: '22'
3536
- run: npm install -g pnpm@10.12.2
37+
- run: node --experimental-strip-types scripts/generate.ts
3638
- run: pnpm install
3739
- run: pnpm build
3840
- run: pnpm test:integration

functions/send-email-link/handler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GraphQLClient } from 'graphql-request';
33
import gql from 'graphql-tag';
44
import { generate } from '@launchql/mjml';
55
import { send as sendPostmaster } from '@constructive-io/postmaster';
6+
import { send as sendSmtp } from 'simple-smtp-server';
67
import { parseEnvBoolean } from '@pgpmjs/env';
78

89
const GetUser = gql`

templates/node-graphql/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @constructive-io/{{name}}-fn
2+
3+
{{description}}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "dist/esm",
5+
"module": "es2022",
6+
"declaration": false
7+
}
8+
}

0 commit comments

Comments
 (0)