-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #625 from swrlab/dev/622-remove-s3
refact!: remove aws-sdk integration (s3)
- Loading branch information
Showing
30 changed files
with
1,590 additions
and
1,967 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { audiolab } from '@swrlab/style-guide/eslint/index' | ||
|
||
export default audiolab( | ||
[ | ||
{ | ||
ignores: [], | ||
}, | ||
{ | ||
rules: { | ||
// previous config (does not trigger errors) | ||
// 'import/no-extraneous-dependencies': 0, | ||
// radix: 0, | ||
// 'no-param-reassign': [2, { props: false }], | ||
// 'no-restricted-syntax': 0, | ||
// 'no-underscore-dangle': 0, | ||
// 'no-return-assign': ['error', 'except-parens'], | ||
// 'one-var': 0, | ||
|
||
// should be fixed / easy to fix | ||
'prefer-promise-reject-errors': 'off', | ||
'n/prefer-global/process': 'off', | ||
'n/prefer-global/buffer': 'off', | ||
'n/no-process-exit': 'off', | ||
'n/no-unpublished-import': 'off', | ||
'n/no-unpublished-require': 'off', | ||
'eslint-comments/require-description': 'off', | ||
'vue/multi-word-component-names': 'off', | ||
// could be fixed when converting to ESM | ||
'import/order': 'off', | ||
// a bit more complex to fix (but nice idea in general) | ||
'import/no-default-export': 'off', | ||
'no-console': 'off', | ||
'func-names': 'off', | ||
'jsonc/sort-keys': 'off', | ||
|
||
// harder to fix | ||
}, | ||
}, | ||
], | ||
{ | ||
prettier: true, | ||
comments: true, | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,41 @@ | ||
{ | ||
"name": "@swrlab/utils", | ||
"version": "1.3.0", | ||
"version": "2.0.0-beta", | ||
"description": "Wrapping common SWR Audio Lab utils", | ||
"main": "./index.js", | ||
"engines": { | ||
"node": ">=20" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/swrlab/node-utils" | ||
}, | ||
"author": "SWR Audio Lab <lab@swr.de>", | ||
"license": "MIT", | ||
"main": "./index.js", | ||
"scripts": { | ||
"ard:coreId": "node ./scripts/ard/coreId.js", | ||
"ard:categories": "node -r dotenv/config scripts/ard/categories.js", | ||
"ard:publishers": "node -r dotenv/config scripts/ard/publishers.js", | ||
"ard:pub-sort": "node -r dotenv/config scripts/ard/sortPubByExtId.js", | ||
"lint": "eslint .", | ||
"test": "mocha tests/**.js -r dotenv/config", | ||
"outdated": "yarn upgrade-interactive", | ||
"reinstall": "rm -rf node_modules && rm yarn.lock && touch yarn.lock && yarn" | ||
}, | ||
"author": "SWR Audio Lab <lab@swr.de>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@google-cloud/storage": "^7.11.0", | ||
"@google-cloud/storage": "^7.11.3", | ||
"abort-controller": "^3.0.0", | ||
"aws-sdk": "2.1618.0", | ||
"luxon": "3.4.4", | ||
"node-crc": "swrlab/node-crc#v2.1.0", | ||
"undici": "6.16.1" | ||
"undici": "6.19.2" | ||
}, | ||
"devDependencies": { | ||
"@swrlab/eslint-plugin-swr": "^0.3.0", | ||
"@swrlab/swr-prettier-config": "^0.3.0", | ||
"@swrlab/style-guide": "https://github.com/swrlab/style-guide.git", | ||
"chai": "4.4.1", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-json": "^3.1.0", | ||
"mocha": "^10.4.0", | ||
"prettier": "^3.2.5" | ||
"eslint": "^9.6.0", | ||
"eslint-plugin-json": "^4.0.0", | ||
"mocha": "^10.6.0", | ||
"prettier": "^3.3.2" | ||
}, | ||
"engines": { | ||
"node": ">=20" | ||
}, | ||
"prettier": "@swrlab/swr-prettier-config", | ||
"packageManager": "yarn@4.2.2" | ||
"packageManager": "yarn@4.2.2", | ||
"prettier": "@swrlab/style-guide/prettier" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.