untracked 1.5.6 → 1.5.7
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 +1 -1
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -125,4 +125,4 @@ It creates the properly gitpattern for ignoring any of these files.
|
|
|
125
125
|
**untracked** © [Kiko Beats](https://kikobeats.com), released under the [MIT](https://github.com/Kikobeats/untracked/blob/master/LICENSE.md) License.<br>
|
|
126
126
|
Authored and maintained by Kiko Beats with help from [contributors](https://github.com/Kikobeats/untracked/contributors).
|
|
127
127
|
|
|
128
|
-
> [kikobeats.com](https://kikobeats.com) · GitHub [@Kiko Beats](https://github.com/Kikobeats) ·
|
|
128
|
+
> [kikobeats.com](https://kikobeats.com) · GitHub [@Kiko Beats](https://github.com/Kikobeats) · X [@Kikobeats](https://x.com/Kikobeats)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "untracked",
|
|
3
3
|
"description": "Universal way for ignoring unnecessary common files to fit your bundle",
|
|
4
4
|
"homepage": "https://github.com/Kikobeats/untracked",
|
|
5
|
-
"version": "1.5.
|
|
5
|
+
"version": "1.5.7",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"untracked": "bin/index.js"
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"git-authors-cli": "latest",
|
|
50
50
|
"github-generate-release": "latest",
|
|
51
51
|
"nano-staged": "latest",
|
|
52
|
-
"npm-check-updates": "latest",
|
|
53
52
|
"simple-git-hooks": "latest",
|
|
54
53
|
"standard": "latest",
|
|
55
54
|
"standard-markdown": "latest",
|
|
@@ -67,22 +66,24 @@
|
|
|
67
66
|
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
68
67
|
"lint": "standard-markdown README.md && standard",
|
|
69
68
|
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
70
|
-
"prerelease": "npm run update:check",
|
|
71
69
|
"pretest": "npm run lint",
|
|
72
70
|
"pretty": "prettier-standard index.js {core,test,bin}/**/*.js --single-quote",
|
|
73
71
|
"release": "standard-version -a",
|
|
74
72
|
"release:github": "github-generate-release",
|
|
75
73
|
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
76
|
-
"test": "exit 0"
|
|
77
|
-
"update": "ncu -u",
|
|
78
|
-
"update:check": "ncu -- --error-level 2"
|
|
74
|
+
"test": "exit 0"
|
|
79
75
|
},
|
|
80
76
|
"preferGlobal": true,
|
|
81
77
|
"license": "MIT",
|
|
82
78
|
"commitlint": {
|
|
83
79
|
"extends": [
|
|
84
80
|
"@commitlint/config-conventional"
|
|
85
|
-
]
|
|
81
|
+
],
|
|
82
|
+
"rules": {
|
|
83
|
+
"body-max-line-length": [
|
|
84
|
+
0
|
|
85
|
+
]
|
|
86
|
+
}
|
|
86
87
|
},
|
|
87
88
|
"nano-staged": {
|
|
88
89
|
"*.js": [
|