Skip to content

Commit

Permalink
add client files
Browse files Browse the repository at this point in the history
  • Loading branch information
atmelmicro committed Feb 17, 2024
1 parent 1215bfe commit cc2d927
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ out/
lambda/
deploy.js
cli.js
# npm is used only for testing, bun for everything
package-lock.json
1 change: 1 addition & 0 deletions src/client-utils.ts → client/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/** Helper function to return json from a function. */
export function json(
data?: object,
params?: { headers?: Record<string, string>; statusCode?: number }
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@atmelmicro/lack",
"version": "0.1.2",
"version": "0.1.3",
"dependencies": {
"@hono/node-server": "^1.8.0",
"aws-cdk-lib": "^2.127.0",
Expand All @@ -16,5 +16,8 @@
},
"bin": {
"lack": "build/cli.js"
}
},
"files": [
"client/"
]
}

0 comments on commit cc2d927

Please sign in to comment.