@nokken65/prettier-config 1.2.4 → 1.2.6

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.
@@ -14,21 +14,7 @@ jobs:
14
14
  steps:
15
15
  - uses: actions/checkout@v5
16
16
 
17
- - uses: pnpm/action-setup@v4
18
- name: Install pnpm
19
- with:
20
- version: 10
21
- cache: true
22
-
23
- - name: Install dependencies
24
- run: pnpm install
25
-
26
17
  - uses: JS-DevTools/npm-publish@v4
27
18
  with:
28
19
  registry: https://registry.npmjs.org/
29
- token: ${{ secrets.NPM_TOKEN }}
30
-
31
- - name: Create GitHub Release
32
- uses: softprops/action-gh-release@v2
33
- with:
34
- generate_release_notes: true
20
+ token: ${{ secrets.NPM_TOKEN }}
package/index.js CHANGED
@@ -4,6 +4,6 @@ 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 = { ...configJson }
8
8
 
9
9
  export default config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nokken65/prettier-config",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "prettier": "./.prettierrc.json",