1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 02:42:13 +00:00

misc: Update Config deps

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
Florian Bouillon 2022-04-05 12:21:23 +02:00
parent 864af5cc5a
commit d24a550e8a
Signed by: Florian Bouillon
GPG Key ID: BEEAF3722D0EBF64
6 changed files with 702 additions and 2100 deletions

View File

@ -6,10 +6,19 @@ indent_size = 4
charset = utf-8 charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true
insert_final_newline = true insert_final_newline = true
max_line_length = 120
end_of_line = lf
[*.md] [*.md]
indent_style = space
indent_size = 2
trim_trailing_whitespace = false trim_trailing_whitespace = false
[*.{yaml|yml}] [*.{yaml|yml}]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
[*.{cpp,h,ino}]
indent_style = space
indent_size = 4

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
node_modules node_modules
lerna-debug.log
yarn-error.log yarn-error.log
dist dist
.cache .cache

View File

@ -6,6 +6,10 @@ Collection of libraries for differents usages
## Libraries ## Libraries
### Config
Holder for my configurations used in most of my other repositories
### DOM Manager ### DOM Manager
Library to manage the browser DOM easier Library to manage the browser DOM easier

2768
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -73,7 +73,7 @@
"max-len": [ "max-len": [
"warn", "warn",
{ {
"code": 200 "code": 120
} }
], ],
"new-parens": "error", "new-parens": "error",

View File

@ -10,13 +10,13 @@
"directory": "packages/config" "directory": "packages/config"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^16.10.3", "@types/node": "^17.0.23",
"next": "^11.1.2" "next": "^12.1.0"
}, },
"peerDependencies": { "peerDependencies": {
"@typescript-eslint/parser": "^5.6.0", "@typescript-eslint/parser": ">=5.18.0",
"next": "^11.1.2", "next": ">=12.1.0",
"next-pre-css": "^1.0.0" "next-pre-css": ">=1.0.0"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"next": { "next": {