fix(a[[): readmi

This commit is contained in:
2024-04-01 09:40:21 +03:00
parent 2b37e59afc
commit 1ff1a31c31
14 changed files with 1715 additions and 77 deletions

View File

@@ -1,7 +1,5 @@
/node_modules
/dist
.env
.DS_Store

View File

@@ -1,7 +1,7 @@
{
"name": "3-class-complex-assistants",
"name": "0-tools-eslint",
"description": "",
"version": "0.0.6",
"version": "0.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
@@ -21,9 +21,8 @@
"registry": "https://vniac.ru:4873"
},
"keywords": [
"Logger",
"helpers",
"utils"
"eslint",
"tools"
],
"author": "vbuglov",
"license": "ISC",
@@ -31,11 +30,8 @@
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"moment": "^2.30.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0",
"vite": "^5.1.6",
"vitest": "^1.4.0"
"typescript-eslint": "^7.2.0"
}
}

View File

@@ -1 +1,9 @@
import jsEslintConfig from './javascript-eslint-config.ts';
import jsEslintConfig from './javascript-eslint-config';
import tsEslintConfig from './typescript-eslint-config';
import vueEslintConfig from "./vue-eslint-config";
export {
jsEslintConfig,
tsEslintConfig,
vueEslintConfig,
}

View File

@@ -1,4 +1,5 @@
module.exports = {
const jsEslintConfig = {
extends: [
"eslint:recommended",
],
@@ -8,3 +9,5 @@ module.exports = {
"no-mixed-spaces-and-tabs": "error",
}
}
export default jsEslintConfig;

View File

@@ -1,4 +1,4 @@
let tsEslintConfig = {
const tsEslintConfig = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin

View File

@@ -1,4 +1,4 @@
vueEslintConfig = {
const vueEslintConfig = {
extends: [
"eslint:recommended",
"plugin:vue/vue3-recommended",
@@ -28,3 +28,5 @@ vueEslintConfig = {
}]
}
}
export default vueEslintConfig;

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
{
"name": "1-toolkits-helpers",
"description": "",
"version": "0.0.5",
"version": "0.0.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",

View File

@@ -0,0 +1,25 @@
build:
@echo "Building repo..."
make build_0-tools-eslint
make build_1-toolkits-helpers
make build_3-class-complex-assistants
build_0-tools-eslint:
@echo "Building 0-tools-eslint..."
cd 0-tools-eslint && yarn build
@echo "Building build_0-tools-eslint success!"
build_1-toolkits-helpers:
@echo "Building 1-toolkits-helpers..."
cd 1-toolkits-helpers && yarn build
@echo "Building build_1-toolkits-helpers success!"
build_3-class-complex-assistants:
@echo "Building 1-toolkits-helpers..."
cd 3-class-complex-assistants && yarn build
@echo "Building build_3-class-complex-assistants success!"
packs_list:
@echo "Packages in folder:"
ls -l | grep '^d'