Skip to content

Commit

Permalink
Reorganize everything into logical subdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
NChitty committed Oct 3, 2024
1 parent 4637ef5 commit 219554e
Show file tree
Hide file tree
Showing 21 changed files with 2,226 additions and 151 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
287 changes: 142 additions & 145 deletions package-lock.json → cdk/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json → cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"devDependencies": {
"@playwright/test": "^1.47.2",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"aws-cdk": "^2.159.1",
"aws-cdk": "^2.160.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0",
Expand All @@ -28,7 +28,7 @@
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "^2.159.1",
"aws-cdk-lib": "^2.160.0",
"aws-cdk-local": "^2.18.0",
"cargo-lambda-cdk": "^0.0.22",
"cdk-pipelines-github": "^0.4.125",
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions Cargo.toml → lambda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ edition = "2021"

[lib]
name = "meal_planner"
path = "lambda/src/lib/lib.rs"
path = "src/lib/lib.rs"

[[bin]]
name = "recipes"
path = "lambda/src/bin/recipes/main.rs"
path = "src/bin/recipes/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
14 changes: 14 additions & 0 deletions lambda/playwright/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
'parser': '@typescript-eslint/parser',
'parserOptions': {
'sourceType': 'module',
'ecmaVersion': 2020,
},
'rules': {
'max-len': ['error', 100],
'object-curly-spacing': ['error', 'always'],
'jsx-quotes': ['error', 'prefer-single'],
},
'plugins': ['@typescript-eslint'],
'extends': ['google'],
};
Loading

0 comments on commit 219554e

Please sign in to comment.