Compare commits

...

18 Commits
v0.0.2 ... main

Author SHA1 Message Date
bcf166bc83 build: v0.3.0 2025-09-17 05:40:11 +03:00
ac1a6f93fc feat: update dependencies 2025-09-17 05:40:11 +03:00
8105e6a24b build: v0.2.0 2025-07-20 16:18:14 +03:00
4bb4584606 feat: update dependencies
BREAKING CHANGE: transform module from CommonJS to ESM
2025-07-20 16:18:14 +03:00
21912658b7 build: v0.1.0 2024-11-01 07:49:28 +03:00
ee38a51b60 feat: update dev dependencies 2024-11-01 07:49:28 +03:00
23f1c08611 feat: add eslint 9 support, update dependencies
BREAKING CHANGE: not support eslint 8 versions and lower
2024-11-01 07:49:28 +03:00
b8de9c89cf build: v0.0.3 2024-07-05 07:25:17 +03:00
bebbbc6663 feat: add yarn cache 2024-07-05 07:25:17 +03:00
ff18846be5 feat: update packages 2024-07-05 07:25:17 +03:00
479195a39d build: v0.0.2 2024-07-05 07:07:25 +03:00
eecce71614 feat: add github actions 2024-07-05 07:05:37 +03:00
4908398d68 feat: upgrade yarn, add linting packages 2024-07-05 07:05:37 +03:00
139a4a6766 feat: add jest ruleset 2024-04-08 07:29:17 +03:00
9fdf02d3c6 fix react typescripts files 2024-04-08 07:24:15 +03:00
e673b2fc30 add Readme 2024-04-08 07:24:11 +03:00
4151c594ae create js, ts and react configurations 2024-04-08 07:24:11 +03:00
1caa0fa4a4 initial commit 2024-04-08 07:24:11 +03:00
611 changed files with 9082 additions and 631 deletions

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

20
.github/workflows/publishing.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Publish Package
run-name: Publishing Package to npmjs registry
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
on:
release:
types: [published]
jobs:
publishing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn npm publish

35
.gitignore vendored
View File

@ -1,2 +1,33 @@
node_modules
.idea
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
/public/CHANGELOG.md
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ide
/.vscode
/.idea
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/offline-cache

1
.husky/commit-msg Normal file
View File

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

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
20.10.0

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"}
]
}

Some files were not shown because too many files have changed in this diff Show More