@nokken65/prettier-config 1.2.6 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,9 +12,11 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
  environment: npm
14
14
  steps:
15
- - uses: actions/checkout@v5
15
+ - name: Checkout
16
+ uses: actions/checkout@v5
16
17
 
17
- - uses: JS-DevTools/npm-publish@v4
18
+ - name: Publish package
19
+ uses: JS-DevTools/npm-publish@v4
18
20
  with:
19
21
  registry: https://registry.npmjs.org/
20
22
  token: ${{ secrets.NPM_TOKEN }}
package/index.js CHANGED
@@ -4,6 +4,8 @@ import configJson from './.prettierrc.json' with { type: 'json' }
4
4
  * @see https://prettier.io/docs/configuration
5
5
  * @type {import("prettier").Config}
6
6
  */
7
- const config = { ...configJson }
7
+ const config = {
8
+ ...configJson
9
+ }
8
10
 
9
11
  export default config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nokken65/prettier-config",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "prettier": "./.prettierrc.json",
@@ -14,11 +14,9 @@
14
14
  "access": "public"
15
15
  },
16
16
  "dependencies": {
17
+ "prettier": "3.7.4",
17
18
  "@ianvs/prettier-plugin-sort-imports": "4.7.0"
18
19
  },
19
- "peerDependencies": {
20
- "prettier": "3.7.4"
21
- },
22
20
  "scripts": {
23
21
  "format": "prettier --write '**/*.{js,jsx,ts,tsx,json}'"
24
22
  },