Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.8.3: Fixed a problem and maintenance #59

Merged
merged 4 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/push-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
git config --global core.eol lf
- name: Stages the pushed branch
uses: actions/checkout@v4
- name: Prepare the Node.js version ${{ matrix.node-version }} environment
- name: Pre-prepare the Node.js version ${{ matrix.node-version }} environment
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable the corepack because of the Yarn berry
run: corepack enable
- name: Prepare the Node.js version ${{ matrix.node-version }} environment
- name: Post-prepare the Node.js version ${{ matrix.node-version }} environment
uses: actions/setup-node@v4
with:
cache: ${{ !env.ACT && 'yarn' || '' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
steps:
- name: Stages the pushed branch
uses: actions/checkout@v4
- name: Prepare the Node.js environment
- name: Pre-prepare the Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: .node-version
- name: Enable the corepack because of the Yarn berry
run: corepack enable
- name: Prepare the Node.js environment
- name: Post-prepare the Node.js environment
uses: actions/setup-node@v4
with:
cache: ${{ !env.ACT && 'yarn' || '' }}
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kurone-kito/lints-config",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"description": "My configuration for the ESLint / Prettier / TypeScript",
"keywords": [
Expand Down Expand Up @@ -48,21 +48,21 @@
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@cspell/cspell-types": "^8.1.0",
"@cspell/eslint-plugin": "^8.1.0",
"@cspell/cspell-types": "^8.1.2",
"@cspell/eslint-plugin": "^8.1.2",
"@kurone-kito/commitlint-config": "workspace:*",
"@kurone-kito/cspell-config": "workspace:*",
"@kurone-kito/eslint-config-base": "workspace:*",
"@kurone-kito/eslint-config-react": "workspace:*",
"@kurone-kito/lint-staged-config": "workspace:*",
"@kurone-kito/prettier-config": "workspace:*",
"@kurone-kito/typescript-config": "workspace:*",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@yarnpkg/sdks": "^3.1.0",
"aicommits": "^1.11.0",
"concurrently": "^8.2.2",
"cspell": "^8.1.0",
"cspell": "^8.1.2",
"eslint": "^8.55.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
Expand All @@ -79,7 +79,7 @@
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "~5.3.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/cspell-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kurone-kito/cspell-config",
"version": "0.8.2",
"version": "0.8.3",
"description": "My CSpell configuration for general projects",
"keywords": [
"config",
Expand Down Expand Up @@ -41,10 +41,10 @@
"prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\""
},
"devDependencies": {
"@cspell/cspell-types": "^8.1.0",
"@cspell/cspell-types": "^8.1.2",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"cspell": "^8.1.0",
"cspell": "^8.1.2",
"js-yaml": "^4.1.0",
"rimraf": "^5.0.5"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kurone-kito/eslint-config-base",
"version": "0.8.2",
"version": "0.8.3",
"description": "My ESLint configuration for general Node.js projects",
"keywords": [
"config",
Expand Down Expand Up @@ -37,10 +37,10 @@
},
"prettier": "@kurone-kito/prettier-config",
"devDependencies": {
"@cspell/eslint-plugin": "^8.1.0",
"@cspell/eslint-plugin": "^8.1.2",
"@kurone-kito/prettier-config": "workspace:*",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"eslint": "^8.55.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kurone-kito/eslint-config-react",
"version": "0.8.2",
"version": "0.8.3",
"description": "My ESLint configuration for React projects",
"keywords": [
"config",
Expand Down Expand Up @@ -41,10 +41,10 @@
"@kurone-kito/eslint-config-base": "workspace:*"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.1.0",
"@cspell/eslint-plugin": "^8.1.2",
"@kurone-kito/prettier-config": "workspace:*",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"eslint": "^8.55.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/lint-staged-config/lint-staged.config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'*':
- yarn exec cspell lint --no-must-find-files --no-progress --show-suggestions -u
- yarn exec eslint --cache --cache-strategy=content -f codeframe
- yarn exec prettier --cache --log-level=warn -uw
- cspell lint --no-must-find-files --no-progress --show-suggestions -u
- eslint --cache --cache-strategy=content -f codeframe
- prettier --cache --log-level=warn -uw
2 changes: 1 addition & 1 deletion packages/lint-staged-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kurone-kito/lint-staged-config",
"version": "0.8.2",
"version": "0.8.3",
"description": "My lint-staged configuration for general projects",
"keywords": [
"config",
Expand Down
4 changes: 2 additions & 2 deletions packages/typescript-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kurone-kito/typescript-config",
"version": "0.8.2",
"version": "0.8.3",
"description": "My TypeScript configuration for general projects",
"keywords": [
"config",
Expand Down Expand Up @@ -34,7 +34,7 @@
"prettier": "@kurone-kito/prettier-config",
"devDependencies": {
"@kurone-kito/prettier-config": "workspace:*",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/parser": "^6.13.2",
"cpy-cli": "^5.0.0",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
Expand Down
Loading
Loading