@visulima/pail 1.1.2 → 1.1.3
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/CHANGELOG.md +14 -0
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## @visulima/pail [1.1.3](https://github.com/visulima/visulima/compare/@visulima/pail@1.1.2...@visulima/pail@1.1.3) (2024-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added missing os key to package.json ([4ad1268](https://github.com/visulima/visulima/commit/4ad1268ed12cbdcf60aeb46d4c052ed1696bc150))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/colorize:** upgraded to 1.3.1
|
|
13
|
+
* **@visulima/fmt:** upgraded to 1.1.4
|
|
14
|
+
|
|
1
15
|
## @visulima/pail [1.1.2](https://github.com/visulima/visulima/compare/@visulima/pail@1.1.1...@visulima/pail@1.1.2) (2024-03-19)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/pail",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Find a file or directory by walking up parent directories.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -179,15 +179,15 @@
|
|
|
179
179
|
"test:watch": "vitest"
|
|
180
180
|
},
|
|
181
181
|
"dependencies": {
|
|
182
|
-
"@visulima/colorize": "1.3.
|
|
183
|
-
"@visulima/fmt": "1.1.
|
|
182
|
+
"@visulima/colorize": "1.3.1",
|
|
183
|
+
"@visulima/fmt": "1.1.4",
|
|
184
184
|
"safe-stable-stringify": "^2.4.3"
|
|
185
185
|
},
|
|
186
186
|
"devDependencies": {
|
|
187
187
|
"@anolilab/eslint-config": "^15.0.3",
|
|
188
188
|
"@anolilab/prettier-config": "^5.0.14",
|
|
189
189
|
"@anolilab/semantic-release-preset": "^8.0.3",
|
|
190
|
-
"@babel/core": "^7.24.
|
|
190
|
+
"@babel/core": "^7.24.3",
|
|
191
191
|
"@rushstack/eslint-plugin-security": "^0.8.1",
|
|
192
192
|
"@secretlint/secretlint-rule-preset-recommend": "^8.1.2",
|
|
193
193
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
@@ -206,12 +206,12 @@
|
|
|
206
206
|
"rimraf": "^5.0.5",
|
|
207
207
|
"rotating-file-stream": "^3.2.1",
|
|
208
208
|
"secretlint": "8.1.2",
|
|
209
|
-
"semantic-release": "^23.0.
|
|
209
|
+
"semantic-release": "^23.0.5",
|
|
210
210
|
"sort-package-json": "^2.8.0",
|
|
211
211
|
"string-length": "^6.0.0",
|
|
212
212
|
"terminal-size": "^4.0.0",
|
|
213
213
|
"tsup": "^8.0.2",
|
|
214
|
-
"typescript": "^5.4.
|
|
214
|
+
"typescript": "^5.4.3",
|
|
215
215
|
"vitest": "^1.4.0",
|
|
216
216
|
"wrap-ansi": "^9.0.0"
|
|
217
217
|
},
|
|
@@ -226,6 +226,11 @@
|
|
|
226
226
|
"engines": {
|
|
227
227
|
"node": ">=18.* <=21.*"
|
|
228
228
|
},
|
|
229
|
+
"os": [
|
|
230
|
+
"darwin",
|
|
231
|
+
"linux",
|
|
232
|
+
"win32"
|
|
233
|
+
],
|
|
229
234
|
"publishConfig": {
|
|
230
235
|
"access": "public",
|
|
231
236
|
"provenance": true
|