Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
vpalmisano committed Jan 28, 2025
1 parent 9fee1b0 commit fe5fbae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
10 changes: 2 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,8 @@ module.exports = {
'sort-imports': 'off',
'import/order': 'off',
'unused-imports/no-unused-imports-ts': 'error',
'unused-imports/no-unused-vars-ts': [
'warn',
{ argsIgnorePattern: '^_' },
],
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_' },
],
'unused-imports/no-unused-vars-ts': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-floating-promises': 'error',
'@typescript-eslint/no-non-null-assertion': ['error'],
'@typescript-eslint/no-explicit-any': 'error',
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docker_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
- name: Cache modules
uses: actions/cache@v4
with:
path: node_modules
path: |
node_modules
.yarn-cache
key: ${{ runner.os }}-node-modules-${{ hashFiles('./package.json') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-node-modules-${{ hashFiles('./package.json') }}-
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"license": "AGPL-3.0-or-later",
"dependencies": {
"@puppeteer/browsers": "^2.4.0",
"@vpalmisano/throttler": "https://github.com/vpalmisano/throttler#0d443d4648323a9a75685713faf5f20ba402382f",
"@vpalmisano/throttler": "https://github.com/vpalmisano/throttler#67e7cf65cff012ae15e0996f4977ca93c064aed6",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"change-case": "^4.1.2",
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -952,9 +952,9 @@
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8"
integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==

"@vpalmisano/throttler@https://github.com/vpalmisano/throttler#0d443d4648323a9a75685713faf5f20ba402382f":
"@vpalmisano/throttler@https://github.com/vpalmisano/throttler#67e7cf65cff012ae15e0996f4977ca93c064aed6":
version "0.0.4"
resolved "https://github.com/vpalmisano/throttler#0d443d4648323a9a75685713faf5f20ba402382f"
resolved "https://github.com/vpalmisano/throttler#67e7cf65cff012ae15e0996f4977ca93c064aed6"
dependencies:
change-case "^4.1.2"
convict "^6.2.4"
Expand Down

0 comments on commit fe5fbae

Please sign in to comment.