diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..8ee2f43 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,15 @@ +github: + - prettier-eslint + - JounQin + - 1stG + - rx-ts + - un-ts +patreon: PrettierESLint +open_collective: eslint-config-prettier +custom: + - https://opencollective.com/prettier-eslint + - https://opencollective.com/1stG + - https://opencollective.com/rxts + - https://opencollective.com/unts + - https://patreon.com/1stG + - https://afdian.net/@JounQin diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d6be38d..e025fd4 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,17 +19,17 @@ jobs: node-version: [20] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Cache node_modules id: cache-node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a05b18f..6ee155a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,20 +16,20 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - node-version: [16, 18, 20] + node-version: [16, 18, 20, 22] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Cache node_modules id: cache-node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }} diff --git a/CHANGELOG.md b/CHANGELOG.md index c8dce6c..ae655ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # eslint-config-prettier +## 10.0.2 + +### Patch Changes + +- [#299](https://github.com/prettier/eslint-config-prettier/pull/299) [`e750edc`](https://github.com/prettier/eslint-config-prettier/commit/e750edc530c816e0b3ffabfab1f4e46532bccbfe) Thanks [@Fdawgs](https://github.com/Fdawgs)! - chore(package): explicitly declare js module type + ## 10.0.0 ### Major Changes diff --git a/package-lock.json b/package-lock.json index d9be165..bd85dd9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "eslint-config-prettier", - "version": "10.0.0", + "version": "10.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "eslint-config-prettier", - "version": "10.0.0", + "version": "10.0.1", "license": "MIT", "bin": { "eslint-config-prettier": "build/bin/cli.js" diff --git a/package.json b/package.json index 97033cb..7c0ee82 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "eslint-config-prettier", - "version": "10.0.1", + "version": "10.0.2", "license": "MIT", "author": "Simon Lydell", "description": "Turns off all rules that are unnecessary or might conflict with Prettier.", "repository": "prettier/eslint-config-prettier", "bin": "build/bin/cli.js", "main": "build/index.js", + "type": "commonjs", "files": [ "build" ],