Skip to content

Commit

Permalink
Merge pull request #1 from tofran/update-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies ⬆️
  • Loading branch information
tofran committed Oct 28, 2023
2 parents 1e8b9f2 + f4ebf86 commit 959d7d2
Show file tree
Hide file tree
Showing 12 changed files with 1,633 additions and 1,564 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy-static-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
pull_request:
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion lib/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
19
20
1,036 changes: 569 additions & 467 deletions lib/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
},
"homepage": "https://github.com/tofran/aws-ses-smtp-credentials",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.4.4",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"@types/crypto-js": "^4.1.3",
"@types/jest": "^29.5.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
"typescript": "^5.2.2"
},
"dependencies": {
"crypto-js": "^4.1.1"
"crypto-js": "^4.2.0"
}
}
}
26 changes: 19 additions & 7 deletions static-site/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier',
],
plugins: ['svelte3', '@typescript-eslint'],
ignorePatterns: ['*.cjs'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
settings: {
'svelte3/typescript': () => require('typescript'),
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte'],
},
env: {
browser: true,
es2017: true,
node: true,
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
},
],
rules: {
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
},
globals: {
NodeJS: true,
},
}
2 changes: 1 addition & 1 deletion static-site/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
19
20
11 changes: 9 additions & 2 deletions static-site/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "consistent",
"semi": false,
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}

0 comments on commit 959d7d2

Please sign in to comment.