@visulima/package 1.5.0 → 1.5.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/CHANGELOG.md +13 -0
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## @visulima/package [1.5.1](https://github.com/visulima/visulima/compare/@visulima/package@1.5.0...@visulima/package@1.5.1) (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/fs:** upgraded to 2.0.2
|
|
13
|
+
|
|
1
14
|
## @visulima/package [1.5.0](https://github.com/visulima/visulima/compare/@visulima/package@1.4.3...@visulima/package@1.5.0) (2024-03-25)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/package",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "One Package to rule them all, finds your root-dir, monorepo, package manager or tsconfig.json",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"test:watch": "vitest"
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
|
-
"@visulima/fs": "2.0.
|
|
145
|
+
"@visulima/fs": "2.0.2",
|
|
146
146
|
"jsonc-parser": "^3.2.1",
|
|
147
147
|
"normalize-package-data": "^6.0.0",
|
|
148
148
|
"pathe": "^1.1.2",
|
|
@@ -186,6 +186,11 @@
|
|
|
186
186
|
"engines": {
|
|
187
187
|
"node": ">=18.* <=21.*"
|
|
188
188
|
},
|
|
189
|
+
"os": [
|
|
190
|
+
"darwin",
|
|
191
|
+
"linux",
|
|
192
|
+
"win32"
|
|
193
|
+
],
|
|
189
194
|
"publishConfig": {
|
|
190
195
|
"access": "public",
|
|
191
196
|
"provenance": true
|