mirror of
https://github.com/ivuorinen/base-configs.git
synced 2026-01-26 18:39:36 +00:00
Compare commits
40 Commits
@ivuorinen
...
@ivuorinen
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d9090c667e | ||
|
|
72b0871beb | ||
|
|
aa6bcc6cd4 | ||
|
|
2b705cec7b | ||
|
|
6f7f3e9cfe | ||
|
|
bc0e9dcdbc | ||
|
|
031f27257a | ||
|
|
03e8a97e2b | ||
|
|
951cdb5014 | ||
|
|
b5e55bf888 | ||
|
|
b3123d3745 | ||
|
|
e1c45b82eb | ||
|
|
0b1a5dfea1 | ||
|
|
76d8d81fb8 | ||
|
|
b8da329ab8 | ||
|
|
cc414bc57f | ||
|
|
e835120a12 | ||
|
|
f1962c8353 | ||
|
|
ab6ed16b78 | ||
|
|
8593ea0ea6 | ||
|
|
bd86a4459d | ||
|
|
4b9d95b4ad | ||
|
|
3cf835ada8 | ||
|
|
e0c7475389 | ||
|
|
3cc07cf3ff | ||
|
|
bbbbdf049f | ||
|
|
b4b41a9056 | ||
|
|
5ccf62bf86 | ||
|
|
b40f77373e | ||
|
|
89fa547656 | ||
| 2bf43815df | |||
|
|
2ca84826c4 | ||
|
|
e031d154b5 | ||
|
|
3352d0a93b | ||
|
|
0c0ac2abe9 | ||
|
|
6d66a87656 | ||
|
|
62ff7930de | ||
|
|
b90fcbf1e1 | ||
|
|
1bc3b6d57f | ||
|
|
7076b97c97 |
4
.github/renovate.json
vendored
4
.github/renovate.json
vendored
@@ -1,4 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["github>ivuorinen/.github:renovate-config"]
|
||||
"extends": [
|
||||
"github>ivuorinen/renovate-config"
|
||||
]
|
||||
}
|
||||
|
||||
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4.1.6
|
||||
uses: actions/checkout@v4.1.7
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
|
||||
52
.github/workflows/pr.yml
vendored
Normal file
52
.github/workflows/pr.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
---
|
||||
name: PR Actions
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
pr:
|
||||
name: PR Actions
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Node.js Environment
|
||||
uses: actions/setup-node@v4.0.3
|
||||
with:
|
||||
always-auth: true
|
||||
node-version: 20
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
scope: '@ivuorinen'
|
||||
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4.0.2
|
||||
id: cache
|
||||
with:
|
||||
path: node_modules
|
||||
key: node-modules-${{ hashFiles('**/yarn.lock') }}
|
||||
|
||||
- name: Install Dependencies
|
||||
if: steps.cache.outputs.cache-hit != 'true'
|
||||
run: yarn install
|
||||
|
||||
- name: Yarn Lock Changes
|
||||
# Please use `main` as version before the stable release will be published as `v1`.
|
||||
uses: Simek/yarn-lock-changes@main
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Optional inputs, can be deleted safely if you are happy with default values.
|
||||
collapsibleThreshold: 25
|
||||
failOnDowngrade: false
|
||||
path: yarn.lock
|
||||
updateComment: true
|
||||
groupByType: false
|
||||
22
.github/workflows/publish.yml
vendored
22
.github/workflows/publish.yml
vendored
@@ -17,12 +17,12 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.6
|
||||
uses: actions/checkout@v4.1.7
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Node.js Environment
|
||||
uses: actions/setup-node@v4.0.2
|
||||
uses: actions/setup-node@v4.0.3
|
||||
with:
|
||||
always-auth: true
|
||||
node-version: 20
|
||||
@@ -48,10 +48,20 @@ jobs:
|
||||
- name: Bootstrap Lerna
|
||||
run: yarn lerna:bootstrap:ci
|
||||
|
||||
- name: Bump Versions and Publish Packages
|
||||
- name: Auto Commit Changes
|
||||
uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: 'chore: 🤖 bump versions and publish packages'
|
||||
commit_options: '--no-verify'
|
||||
|
||||
- name: Bump Versions
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
run: |
|
||||
yarn lerna:version
|
||||
yarn lerna:publish
|
||||
run: yarn lerna:version
|
||||
|
||||
- name: Publish Packages
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
run: yarn lerna:publish
|
||||
|
||||
15
.gitignore
vendored
15
.gitignore
vendored
@@ -1 +1,16 @@
|
||||
node_modules
|
||||
packages/**/.browserslistrc
|
||||
packages/**/.commitlintrc.json
|
||||
packages/**/.eslintrc.json
|
||||
packages/**/.markdownlint.json
|
||||
packages/**/.prettierrc.json
|
||||
packages/**/.releaserc.json
|
||||
packages/**/.stylelintrc.json
|
||||
|
||||
!packages/browserslist-config/.browserslistrc
|
||||
!packages/commitlint-config/.commitlintrc.json
|
||||
!packages/eslint-config/.eslintrc.json
|
||||
!packages/markdownlint-config/.markdownlint.json
|
||||
!packages/prettier-config/.prettierrc.json
|
||||
!packages/release-config/.releaserc.json
|
||||
!packages/stylelint-config/.stylelintrc.json
|
||||
|
||||
@@ -62,9 +62,9 @@
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
"eslint-plugin-n": "^17.0.0",
|
||||
"eslint-plugin-prettier": "^5.0.1",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-promise": "^7.0.0",
|
||||
"eslint-plugin-sonarjs": "^1.0.0",
|
||||
"eslint-plugin-unicorn": "^53.0.0",
|
||||
"eslint-plugin-unicorn": "^55.0.0",
|
||||
"lerna": "^8.0.0",
|
||||
"lerna-update-wizard": "^1.1.2",
|
||||
"markdownlint-cli": "^0.41.0",
|
||||
|
||||
@@ -2,6 +2,44 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [1.1.102](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.101...@ivuorinen/base-configs@1.1.102) (2024-07-29)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.101](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.100...@ivuorinen/base-configs@1.1.101) (2024-07-27)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.100](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.99...@ivuorinen/base-configs@1.1.100) (2024-07-16)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.99](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.98...@ivuorinen/base-configs@1.1.99) (2024-07-16)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.98](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.97...@ivuorinen/base-configs@1.1.98) (2024-07-13)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## 1.1.97 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [1.1.96](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.95...@ivuorinen/base-configs@1.1.96) (2024-06-18)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.95](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.94...@ivuorinen/base-configs@1.1.95) (2024-06-15)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.94](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.93...@ivuorinen/base-configs@1.1.94) (2024-06-14)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
## [1.1.93](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.92...@ivuorinen/base-configs@1.1.93) (2024-06-12)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/base-configs",
|
||||
"version": "1.1.93",
|
||||
"version": "1.1.102",
|
||||
"description": "ivuorinen's shareable configurations meta package",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -27,11 +27,12 @@
|
||||
"url": "git+https://github.com/ivuorinen/base-configs.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/browserslist-config": "^0.2.7",
|
||||
"@ivuorinen/commitlint-config": "^0.2.22",
|
||||
"@ivuorinen/eslint-config": "^0.4.41",
|
||||
"@ivuorinen/markdownlint-config": "^0.2.7",
|
||||
"@ivuorinen/prettier-config": "^0.2.12",
|
||||
"@ivuorinen/semantic-release-config": "^0.2.22"
|
||||
"@ivuorinen/browserslist-config": "^0.2.9",
|
||||
"@ivuorinen/commitlint-config": "^0.2.23",
|
||||
"@ivuorinen/eslint-config": "^0.4.47",
|
||||
"@ivuorinen/markdownlint-config": "^0.2.9",
|
||||
"@ivuorinen/prettier-config": "^0.2.16",
|
||||
"@ivuorinen/semantic-release-config": "^0.2.23",
|
||||
"eslint-plugin-n": "^17.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,6 +2,18 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.2.9](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/browserslist-config@0.2.8...@ivuorinen/browserslist-config@0.2.9) (2024-07-13)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update browserslist to 4.23.2 ([#271](https://github.com/ivuorinen/base-configs/issues/271)) ([8593ea0](https://github.com/ivuorinen/base-configs/commit/8593ea0ea6898335a38fe2aa57d0d7457919eb35))
|
||||
|
||||
## 0.2.8 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.7](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/browserslist-config@0.2.6...@ivuorinen/browserslist-config@0.2.7) (2024-06-12)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/browserslist-config",
|
||||
"version": "0.2.7",
|
||||
"version": "0.2.9",
|
||||
"description": "ivuorinen's shareable configuration for Browserslist.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -36,8 +36,8 @@
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"browserslist": "4.23.1"
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"browserslist": "4.23.2"
|
||||
},
|
||||
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
|
||||
}
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 0.2.23 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.22](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/commitlint-config@0.2.21...@ivuorinen/commitlint-config@0.2.22) (2024-06-04)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/commitlint-config
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/commitlint-config",
|
||||
"version": "0.2.22",
|
||||
"version": "0.2.23",
|
||||
"description": "ivuorinen's shareable configuration for commitlint.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -37,7 +37,7 @@
|
||||
"dependencies": {
|
||||
"@commitlint/cli": "19.3.0",
|
||||
"@commitlint/config-conventional": "19.2.2",
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"@types/node": "*",
|
||||
"typescript": ">=4"
|
||||
},
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 1.1.4 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [1.1.3](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/config-checker@1.1.2...@ivuorinen/config-checker@1.1.3) (2024-05-05)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/config-checker",
|
||||
"version": "1.1.3",
|
||||
"version": "1.1.4",
|
||||
"description": "Checks the commonly used configuration locations for configuration files",
|
||||
"keywords": [
|
||||
"check-config",
|
||||
|
||||
5
packages/eslint-config/.eslintrc.json
Normal file
5
packages/eslint-config/.eslintrc.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"extends": [
|
||||
"@ivuorinen"
|
||||
]
|
||||
}
|
||||
@@ -2,6 +2,40 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.4.47](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.46...@ivuorinen/eslint-config@0.4.47) (2024-07-29)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update eslint to 9.8.0 ([#281](https://github.com/ivuorinen/base-configs/issues/281)) ([72b0871](https://github.com/ivuorinen/base-configs/commit/72b0871beb452e408b460e5d2804085affef9dc4))
|
||||
|
||||
## [0.4.46](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.45...@ivuorinen/eslint-config@0.4.46) (2024-07-27)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update eslint-plugin-promise to 7.0.0 ([#279](https://github.com/ivuorinen/base-configs/issues/279)) ([6f7f3e9](https://github.com/ivuorinen/base-configs/commit/6f7f3e9cfee3428eb723cbad79828741ecb13748))
|
||||
|
||||
## [0.4.45](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.44...@ivuorinen/eslint-config@0.4.45) (2024-07-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update eslint to 9.7.0 ([#276](https://github.com/ivuorinen/base-configs/issues/276)) ([e1c45b8](https://github.com/ivuorinen/base-configs/commit/e1c45b82eb617edb7edd075f9218e07504ba63c2))
|
||||
|
||||
## 0.4.44 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.4.43](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.42...@ivuorinen/eslint-config@0.4.43) (2024-06-18)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update eslint to 9.5.0 ([#264](https://github.com/ivuorinen/base-configs/issues/264)) ([0c0ac2a](https://github.com/ivuorinen/base-configs/commit/0c0ac2abe9f345df6a84b6988a27d64a1d7a59a4))
|
||||
|
||||
## [0.4.42](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.41...@ivuorinen/eslint-config@0.4.42) (2024-06-14)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/eslint-config
|
||||
|
||||
## [0.4.41](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.40...@ivuorinen/eslint-config@0.4.41) (2024-06-04)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/eslint-config
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/eslint-config",
|
||||
"version": "0.4.41",
|
||||
"version": "0.4.47",
|
||||
"description": "ivuorinen's shareable configuration for ESLint.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -36,14 +36,14 @@
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"eslint": "9.4.0",
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"eslint": "9.8.0",
|
||||
"eslint-config-prettier": "^9",
|
||||
"eslint-config-standard": "^17",
|
||||
"eslint-plugin-import": "^2",
|
||||
"eslint-plugin-jest": "^28",
|
||||
"eslint-plugin-n": "^17",
|
||||
"eslint-plugin-promise": "^6",
|
||||
"eslint-plugin-promise": "^7.0.0",
|
||||
"eslint-plugin-sonarjs": "^1"
|
||||
},
|
||||
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
|
||||
|
||||
3
packages/markdownlint-config/.markdownlint.json
Normal file
3
packages/markdownlint-config/.markdownlint.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": "@ivuorinen/markdownlint-config"
|
||||
}
|
||||
@@ -2,6 +2,16 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 0.2.9 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.8](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/markdownlint-config@0.2.7...@ivuorinen/markdownlint-config@0.2.8) (2024-06-14)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/markdownlint-config
|
||||
|
||||
## [0.2.7](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/markdownlint-config@0.2.6...@ivuorinen/markdownlint-config@0.2.7) (2024-05-29)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/markdownlint-config",
|
||||
"version": "0.2.7",
|
||||
"version": "0.2.9",
|
||||
"description": "ivuorinen's shareable configuration for markdownlint.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -36,7 +36,7 @@
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"markdownlint-cli": "0.41.0"
|
||||
},
|
||||
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
|
||||
|
||||
1
packages/prettier-config/.prettierrc.json
Normal file
1
packages/prettier-config/.prettierrc.json
Normal file
@@ -0,0 +1 @@
|
||||
"@ivuorinen/prettier-config"
|
||||
@@ -2,6 +2,28 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.2.16](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/prettier-config@0.2.15...@ivuorinen/prettier-config@0.2.16) (2024-07-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update prettier to 3.3.3 ([#277](https://github.com/ivuorinen/base-configs/issues/277)) ([03e8a97](https://github.com/ivuorinen/base-configs/commit/03e8a97e2b0d3a35e49969d100df16b7f7aaa89d))
|
||||
|
||||
## 0.2.15 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.14](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/prettier-config@0.2.13...@ivuorinen/prettier-config@0.2.14) (2024-06-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency prettier to v3.3.2 ([62ff793](https://github.com/ivuorinen/base-configs/commit/62ff7930de55c29e08975faaed1b22df8c85ba44))
|
||||
|
||||
## [0.2.13](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/prettier-config@0.2.12...@ivuorinen/prettier-config@0.2.13) (2024-06-14)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/prettier-config
|
||||
|
||||
## [0.2.12](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/prettier-config@0.2.11...@ivuorinen/prettier-config@0.2.12) (2024-06-06)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/prettier-config",
|
||||
"version": "0.2.12",
|
||||
"version": "0.2.16",
|
||||
"description": "ivuorinen's shareable configuration for Prettier.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -36,8 +36,8 @@
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"prettier": "3.3.1"
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"prettier": "3.3.3"
|
||||
},
|
||||
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
|
||||
}
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 0.2.23 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.22](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.21...@ivuorinen/semantic-release-config@0.2.22) (2024-06-04)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/semantic-release-config",
|
||||
"version": "0.2.22",
|
||||
"version": "0.2.23",
|
||||
"description": "ivuorinen's shareable configuration for semantic-release.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -36,7 +36,7 @@
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"@semantic-release/changelog": "6.0.3",
|
||||
"@semantic-release/git": "10.0.1",
|
||||
"semantic-release": "24.0.0"
|
||||
|
||||
5
packages/stylelint-config/.stylelintrc.json
Normal file
5
packages/stylelint-config/.stylelintrc.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"extends": [
|
||||
"@ivuorinen/stylelint-config/css"
|
||||
]
|
||||
}
|
||||
@@ -2,6 +2,46 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.2.34](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.33...@ivuorinen/stylelint-config@0.2.34) (2024-07-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update stylelint to 16.7.0 ([#275](https://github.com/ivuorinen/base-configs/issues/275)) ([b5e55bf](https://github.com/ivuorinen/base-configs/commit/b5e55bf888a926efd9feb3a0a87bf18870457f3b))
|
||||
|
||||
## [0.2.33](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.32...@ivuorinen/stylelint-config@0.2.33) (2024-07-13)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update stylelint-scss to 6.4.1 ([#274](https://github.com/ivuorinen/base-configs/issues/274)) ([76d8d81](https://github.com/ivuorinen/base-configs/commit/76d8d81fb82f58626c81335240da73d8e95ecea9))
|
||||
|
||||
## [0.2.32](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.31...@ivuorinen/stylelint-config@0.2.32) (2024-07-13)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update stylelint-config-recommended-scss to 14.1.0 ([#272](https://github.com/ivuorinen/base-configs/issues/272)) ([cc414bc](https://github.com/ivuorinen/base-configs/commit/cc414bc57f1b4fa55aac4c8818ca6f32fe3f5896))
|
||||
|
||||
## [0.2.31](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.30...@ivuorinen/stylelint-config@0.2.31) (2024-07-13)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update stylelint-scss to 6.4.0 ([#273](https://github.com/ivuorinen/base-configs/issues/273)) ([f1962c8](https://github.com/ivuorinen/base-configs/commit/f1962c835384ad292261fd8187a08f1494c93ccd))
|
||||
|
||||
## 0.2.30 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.29](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.28...@ivuorinen/stylelint-config@0.2.29) (2024-06-22)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update stylelint-scss to 6.3.2 ([#266](https://github.com/ivuorinen/base-configs/issues/266)) ([2ca8482](https://github.com/ivuorinen/base-configs/commit/2ca84826c4c481f332925336a7291542a393dfe5))
|
||||
|
||||
## [0.2.28](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.27...@ivuorinen/stylelint-config@0.2.28) (2024-06-14)
|
||||
|
||||
**Note:** Version bump only for package @ivuorinen/stylelint-config
|
||||
|
||||
## [0.2.27](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.26...@ivuorinen/stylelint-config@0.2.27) (2024-06-06)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ivuorinen/stylelint-config",
|
||||
"version": "0.2.27",
|
||||
"version": "0.2.34",
|
||||
"description": "ivuorinen's shareable configuration for stylelint.",
|
||||
"author": {
|
||||
"name": "Ismo Vuorinen",
|
||||
@@ -37,13 +37,13 @@
|
||||
"postinstall": "node scripts/postinstall.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ivuorinen/config-checker": "^1.1.3",
|
||||
"@ivuorinen/config-checker": "^1.1.4",
|
||||
"postcss": "^8.4.2",
|
||||
"stylelint": "16.6.1",
|
||||
"stylelint-config-recommended-scss": "14.0.0",
|
||||
"stylelint-config-standard": "36.0.0",
|
||||
"stylelint": "16.7.0",
|
||||
"stylelint-config-recommended-scss": "14.1.0",
|
||||
"stylelint-config-standard": "36.0.1",
|
||||
"stylelint-order": "6.0.4",
|
||||
"stylelint-scss": "6.3.1"
|
||||
"stylelint-scss": "6.4.1"
|
||||
},
|
||||
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user