@nokken65/prettier-config 1.2.3 → 1.2.4
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.
|
@@ -4,6 +4,8 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
6
|
- master
|
|
7
|
+
tags:
|
|
8
|
+
- 'v*'
|
|
7
9
|
|
|
8
10
|
jobs:
|
|
9
11
|
publish-npm:
|
|
@@ -12,6 +14,15 @@ jobs:
|
|
|
12
14
|
steps:
|
|
13
15
|
- uses: actions/checkout@v5
|
|
14
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
|
+
|
|
15
26
|
- uses: JS-DevTools/npm-publish@v4
|
|
16
27
|
with:
|
|
17
28
|
registry: https://registry.npmjs.org/
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nokken65/prettier-config",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"prettier": "./.prettierrc",
|
|
6
|
+
"prettier": "./.prettierrc.json",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./index.js",
|
|
10
|
-
"./.prettierrc": "./.prettierrc",
|
|
10
|
+
"./.prettierrc.json": "./.prettierrc.json",
|
|
11
11
|
"./.prettierignore": "./.prettierignore"
|
|
12
12
|
},
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@ianvs/prettier-plugin-sort-imports": "4.7.0"
|
|
18
|
+
},
|
|
16
19
|
"peerDependencies": {
|
|
17
|
-
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
|
|
18
20
|
"prettier": "3.7.4"
|
|
19
21
|
},
|
|
20
22
|
"scripts": {
|
|
File without changes
|