Skip to content

Commit

Permalink
style(.ds_store): remove from the git history and add into git ignore…
Browse files Browse the repository at this point in the history
… file all .DS_Store file
  • Loading branch information
Dah-kenangnon committed Feb 4, 2024
1 parent dee0910 commit 905cb5d
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 24 deletions.
5 changes: 0 additions & 5 deletions .lintstagedrc.json

This file was deleted.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
],
"dependencies": {
"bcrypt": "^5.0.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
Expand Down
Binary file removed src/.DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export class Config {
public port: number;
/** Http Keep alive timeout */
public keepAliveTimeout: number;
/** Http Domaine name */
public domaineName: string;
/** Http Domain name */
public domainName: string;
/** Http Parameter limit */
public parameterLimit: number;
/** Http Request body size */
Expand Down Expand Up @@ -308,7 +308,7 @@ export class Config {
this.isProduction = envVars.NODE_ENV === 'production';
this.port = envVars.PORT;
this.keepAliveTimeout = envVars.KEEP_ALIVE_TIMEOUT;
this.domaineName = envVars.DOMAIN_NAME;
this.domainName = envVars.DOMAIN_NAME;
this.maximumRequestBodySize = envVars.MAXIMUM_REQUEST_BODY_SIZE;
this.parameterLimit = envVars.PARAMETER_LIMIT;
this.db = {
Expand Down
Binary file removed src/features/.DS_Store
Binary file not shown.
Binary file removed src/features/auth/.DS_Store
Binary file not shown.
Binary file removed tests/integration/.DS_Store
Binary file not shown.
Binary file removed tests/unit/.DS_Store
Binary file not shown.
16 changes: 1 addition & 15 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1455,7 +1455,7 @@
resolved "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.3.tgz"
integrity sha512-6tOUG+nVHn0cJbVp25JFayS5UE6+xlbcNF9Lo9mU7U0zk3zeUShZied4YEQZjy1JBF043FSkdXw8YkUJuVtB5g==

"@types/validator@^13.11.2", "@types/validator@^13.7.10":
"@types/validator@^13.11.2":
version "13.11.2"
resolved "https://registry.npmjs.org/@types/validator/-/validator-13.11.2.tgz"
integrity sha512-nIKVVQKT6kGKysnNt+xLobr+pFJNssJRi2s034wgWeFBUx01fI8BeHTW2TcRp7VcFu9QCYG8IlChTuovcm0oKQ==
Expand Down Expand Up @@ -2181,15 +2181,6 @@ cjs-module-lexer@^1.0.0:
resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz"
integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==

class-validator@^0.14.0:
version "0.14.0"
resolved "https://registry.npmjs.org/class-validator/-/class-validator-0.14.0.tgz"
integrity sha512-ct3ltplN8I9fOwUd8GrP8UQixwff129BkEtuWDKL5W45cQuLd19xqmTLu5ge78YDm/fdje6FMt0hGOhl0lii3A==
dependencies:
"@types/validator" "^13.7.10"
libphonenumber-js "^1.10.14"
validator "^13.7.0"

clean-stack@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
Expand Down Expand Up @@ -4601,11 +4592,6 @@ levn@^0.4.1:
prelude-ls "^1.2.1"
type-check "~0.4.0"

libphonenumber-js@^1.10.14:
version "1.10.45"
resolved "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.45.tgz"
integrity sha512-eeHcvGafEYCaKB4fo2uBINfG7j7PcGwBHUaTVfbwl/6KcjCgIKNlIOsSXVRp9BH10NQwmvvk+nQ1e/Yp4BGB7w==

[email protected]:
version "3.0.0"
resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz"
Expand Down

0 comments on commit 905cb5d

Please sign in to comment.