Skip to content

Commit

Permalink
chore(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
diba1013 committed Jun 22, 2024
1 parent 81e2626 commit 7faeb83
Show file tree
Hide file tree
Showing 12 changed files with 3,430 additions and 2,805 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ on:
jobs:
build:
runs-on: ubuntu-latest
name: "Build"

env:
NPM_GITHUB_TOKEN: ${{ secrets.NPM_TOKEN }}

name: "Build"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: "Prepare"
run: |
corepack enable
- name: "Setup node"
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 20
node-version-file: ".nvmrc"
cache: pnpm

- name: Install
Expand Down
22 changes: 13 additions & 9 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,32 @@ jobs:
publish:
runs-on: ubuntu-latest
name: Publish artifact

env:
NPM_GITHUB_TOKEN: ${{ secrets.NPM_TOKEN }}

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: "Prepare"
run: |
corepack enable
- name: Setup node
uses: actions/setup-node@v2
- name: "Setup node"
uses: actions/setup-node@v4
with:
node-version: 20
node-version-file: ".nvmrc"
cache: pnpm

- name: Install
run: |
pnpm install --frozen-lockfile
- name: Build
run: |
pnpm build
- name: Publish
run: |
pnpm -r publish --no-git-checks
pnpm publish --no-git-checks
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.14.0
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm-lock.yml
pnpm-lock.yaml
3 changes: 0 additions & 3 deletions commitlint.config.cjs

This file was deleted.

1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default { extends: ["@commitlint/config-conventional"] };
3 changes: 0 additions & 3 deletions lint-staged.config.cjs

This file was deleted.

3 changes: 3 additions & 0 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
"*": ["prettier --ignore-unknown --write --cache", "eslint --fix --cache"],
};
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"url": "git://github.com/diba1013/config.git"
},
"author": "diba1013",
"packageManager": "pnpm@9.1.2",
"engines": {
"node": ">=20",
"pnpm": ">=8"
Expand All @@ -24,20 +25,20 @@
"packages/**"
],
"dependencies": {
"eslint": "^8.56.0",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"stylelint": "^16.1.0"
"eslint": "^9.5.0",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"stylelint": "^16.6.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@diba1013/eslint-config": "workspace:*",
"@diba1013/prettier-config": "workspace:*",
"@types/node": "^20.10.8",
"lint-staged": "^15.2.0",
"@types/node": "^20.14.6",
"lint-staged": "^15.2.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
"typescript": "^5.5.2"
}
}
6 changes: 3 additions & 3 deletions packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"prettier": "3.x"
},
"dependencies": {
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.11"
"prettier-plugin-svelte": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5"
},
"devDependencies": {
"prettier": "^3.1.1"
"prettier": "^3.3.2"
}
}
4 changes: 2 additions & 2 deletions packages/stylelint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"stylelint": "15.x"
},
"dependencies": {
"postcss-html": "^1.5.0",
"postcss-html": "^1.7.0",
"stylelint-config-standard": "^36.0.0"
},
"devDependencies": {
"stylelint": "^16.1.0"
"stylelint": "^16.6.1"
}
}
Loading

0 comments on commit 7faeb83

Please sign in to comment.