Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Apr 15, 2024
1 parent 67bde00 commit c8037fd
Show file tree
Hide file tree
Showing 8 changed files with 696 additions and 394 deletions.
52 changes: 0 additions & 52 deletions .eslintrc.json

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v2.5.0

- :rocket: Use metadata

### v2.4.0

- :rocket: Add travelerInformationMessage
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM public.ecr.aws/lambda/nodejs:18

COPY . ${LAMBDA_TASK_ROOT}/

RUN npm install
RUN npm install \
&& npm run build

CMD ["task.handler"]
CMD ["dist/task.handler"]
12 changes: 12 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
"rules": {
"@typescript-eslint/no-explicit-any": "warn"
}
}
);
Loading

0 comments on commit c8037fd

Please sign in to comment.