@devpow112/babel-config 1.1.0 → 1.1.1
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.
- package/README.md +8 -2
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ npm i
|
|
|
42
42
|
Execute linters via `npm`.
|
|
43
43
|
|
|
44
44
|
```console
|
|
45
|
-
# git, javascript and
|
|
45
|
+
# git, javascript, markdown and package.json
|
|
46
46
|
npm run lint
|
|
47
47
|
|
|
48
48
|
# git only
|
|
@@ -53,6 +53,9 @@ npm run lint:js
|
|
|
53
53
|
|
|
54
54
|
# markdown only
|
|
55
55
|
npm run lint:md
|
|
56
|
+
|
|
57
|
+
# package.json only
|
|
58
|
+
npm run lint:pkg
|
|
56
59
|
```
|
|
57
60
|
|
|
58
61
|
### Formatting
|
|
@@ -60,7 +63,7 @@ npm run lint:md
|
|
|
60
63
|
Execute formatters via `npm`.
|
|
61
64
|
|
|
62
65
|
```console
|
|
63
|
-
# javascript and
|
|
66
|
+
# javascript, markdown and package.json
|
|
64
67
|
npm run format
|
|
65
68
|
|
|
66
69
|
# javascript only
|
|
@@ -68,6 +71,9 @@ npm run format:js
|
|
|
68
71
|
|
|
69
72
|
# markdown only
|
|
70
73
|
npm run format:md
|
|
74
|
+
|
|
75
|
+
# package.json only
|
|
76
|
+
npm run format:pkg
|
|
71
77
|
```
|
|
72
78
|
|
|
73
79
|
<!-- links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devpow112/babel-config",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Shareable babel configuration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"babel-config"
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@commitlint/cli": "^17.6.1",
|
|
42
|
-
"@devpow112/commitlint-config": "^
|
|
43
|
-
"@devpow112/eslint-config": "^
|
|
42
|
+
"@devpow112/commitlint-config": "^2.0.0",
|
|
43
|
+
"@devpow112/eslint-config": "^2.0.1",
|
|
44
44
|
"@devpow112/semantic-release-config": "^2.1.2",
|
|
45
45
|
"eslint": "^8.39.0",
|
|
46
46
|
"markdownlint-cli": "^0.33.0",
|
|
@@ -54,8 +54,7 @@
|
|
|
54
54
|
"babel-plugin-add-module-exports": "^1"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
|
-
"node": ">=12.
|
|
58
|
-
"npm": ">=6.14.15"
|
|
57
|
+
"node": ">=12.0"
|
|
59
58
|
},
|
|
60
59
|
"publishConfig": {
|
|
61
60
|
"access": "public",
|