refactor: migrate @krlwlfrt/async-pool to @openstapps/collection-utils

This commit is contained in:
2023-06-29 17:29:49 +02:00
parent 64caebafe5
commit 98546a97a3
58 changed files with 621 additions and 1175 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "@openstapps/es-mapping-generator",
"description": "Tool to convert TypeScript Interfaces to Elasticsearch Mappings",
"version": "3.0.0",
"version": "2.0.0",
"type": "commonjs",
"license": "GPL-3.0-only",
"author": "Thea Schöbl <dev@theaninova.de>",
@@ -19,8 +19,8 @@
"build": "rimraf lib && tsc",
"format": "prettier . -c --ignore-path ../../.gitignore",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"lint": "eslint -c .eslintrc --ignore-path .eslintignore --ext .ts src/ test/",
"lint:fix": "eslint --fix -c .eslintrc --ignore-path .eslintignore --ext .ts src/ test/",
"lint": "eslint --ext .ts src/ test/",
"lint:fix": "eslint --ext .ts src/ test/",
"test": "c8 mocha"
},
"dependencies": {
@@ -48,5 +48,14 @@
"rimraf": "5.0.0",
"ts-node": "10.9.1"
},
"prettier": "@openstapps/prettier-config"
"prettier": "@openstapps/prettier-config",
"eslintConfig": {
"extends": "@openstapps",
"rules": {
"no-console": "off",
"unicorn/no-negated-condition": "off",
"unicorn/no-null": "off",
"jsdoc/check-tag-names": "off"
}
}
}