Release v0.0.2 #3

Merged
ksv741 merged 4 commits from krylov into main 2024-04-08 07:29:17 +03:00
9 changed files with 5995 additions and 2046 deletions
Showing only changes of commit a8e08f8879 - Show all commits

3
.commitlintrc Normal file
View File

@ -0,0 +1,3 @@
{
"extends": ["@commitlint/config-conventional"]
}

10
.editorconfig Normal file
View File

@ -0,0 +1,10 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2

1
.husky/commit-msg Normal file
View File

@ -0,0 +1 @@
npx --no -- commitlint --edit $1

8
.versionrc Normal file
View File

@ -0,0 +1,8 @@
{
"header": "# ksv741 Eslint Config",
"releaseCommitMessageFormat": "build: v{{currentTag}}",
"types": [
{"type": "feat", "section": "🚀 New Features"},
{"type": "fix", "section": "\uD83D\uDEE0\uFE0F Bug Fixes"}
]
}

BIN
.yarn/install-state.gz Normal file

Binary file not shown.

893
.yarn/releases/yarn-4.1.1.cjs vendored Executable file

File diff suppressed because one or more lines are too long

7
.yarnrc.yml Normal file
View File

@ -0,0 +1,7 @@
nodeLinker: node-modules
npmAuthToken: "${NODE_AUTH_TOKEN-fallback}"
npmPublishRegistry: "https://registry.npmjs.org"
yarnPath: .yarn/releases/yarn-4.1.1.cjs

View File

@ -24,7 +24,11 @@
}, },
"version": "0.0.1", "version": "0.0.1",
"devDependencies": { "devDependencies": {
"eslint": "8.56.0" "@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"eslint": "8.56.0",
"husky": "9.0.11",
"standard-version": "9.5.0"
}, },
"main": "index.js", "main": "index.js",
"engines": { "engines": {
@ -62,6 +66,8 @@
"./jest": "./js-ts-jest.js" "./jest": "./js-ts-jest.js"
}, },
"scripts": { "scripts": {
"release": "standard-version",
"release:rc": "standard-version --prerelease rc",
"prepare": "husky" "prepare": "husky"
} }
} }

7111
yarn.lock

File diff suppressed because it is too large Load Diff