@visulima/package 2.0.0 → 3.0.0
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 +26 -0
- package/README.md +0 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +0 -1199
- package/dist/index.d.mts +0 -1199
- package/dist/index.d.ts +0 -1199
- package/dist/index.mjs +1 -1
- package/package.json +2 -15
- package/dist/find-cache-dir.cjs +0 -1
- package/dist/find-cache-dir.d.cts +0 -9
- package/dist/find-cache-dir.d.mts +0 -9
- package/dist/find-cache-dir.d.ts +0 -9
- package/dist/find-cache-dir.mjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## @visulima/package [3.0.0](https://github.com/visulima/visulima/compare/@visulima/package@2.0.1...@visulima/package@3.0.0) (2024-06-20)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* moved findCacheDirectory, findCacheDirectorySync into a new package
|
|
6
|
+
Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **find-cache-dir:** a new package out of package find-cache functions ([b9a2728](https://github.com/visulima/visulima/commit/b9a27280216a2230ca84605fe4226763b0ba5e2a))
|
|
11
|
+
* removed findCacheDirectory, findCacheDirectorySync from this package ([a84fa91](https://github.com/visulima/visulima/commit/a84fa9136c554ca2ee40ac2c4c8ed57a8a935ab2))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **package:** added removed files back ([753c10c](https://github.com/visulima/visulima/commit/753c10c7d9f1bbd51bb6623b09de9d42e5f54d24))
|
|
16
|
+
|
|
17
|
+
## @visulima/package [2.0.1](https://github.com/visulima/visulima/compare/@visulima/package@2.0.0...@visulima/package@2.0.1) (2024-06-19)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **package:** removed TsConfigJson export ([efbdf58](https://github.com/visulima/visulima/commit/efbdf58b7faaa3c1927d45f0a8cfd13fed6662e6))
|
|
22
|
+
|
|
23
|
+
### Miscellaneous Chores
|
|
24
|
+
|
|
25
|
+
* updated dev dependencies ([de0f8a6](https://github.com/visulima/visulima/commit/de0f8a6b9030acbc044e5bc0f78091fb1ec89a28))
|
|
26
|
+
|
|
1
27
|
## @visulima/package [2.0.0](https://github.com/visulima/visulima/compare/@visulima/package@1.10.3...@visulima/package@2.0.0) (2024-06-17)
|
|
2
28
|
|
|
3
29
|
### ⚠ BREAKING CHANGES
|
package/README.md
CHANGED
|
@@ -160,7 +160,6 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
160
160
|
### Related Projects
|
|
161
161
|
|
|
162
162
|
- [read-pkg](https://github.com/sindresorhus/read-pkg) - Read a package.json file.
|
|
163
|
-
- [find-cache-dir](https://github.com/sindresorhus/find-cache-dir) - Find the cache directory.
|
|
164
163
|
|
|
165
164
|
## License
|
|
166
165
|
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("./shared/package.Xn4v2Y_g.cjs"),n=require("./monorepo.cjs"),o=require("./package.cjs"),e=require("./package-json.cjs"),a=require("./package-manager.cjs");exports.PackageNotFoundError=c.u;exports.findMonorepoRoot=n.findMonorepoRoot;exports.findMonorepoRootSync=n.findMonorepoRootSync;exports.findPackageRoot=o.findPackageRoot;exports.findPackageRootSync=o.findPackageRootSync;exports.findPackageJson=e.findPackageJson;exports.findPackageJsonSync=e.findPackageJsonSync;exports.parsePackageJson=e.parsePackageJson;exports.writePackageJson=e.writePackageJson;exports.writePackageJsonSync=e.writePackageJsonSync;exports.findLockFile=a.findLockFile;exports.findLockFileSync=a.findLockFileSync;exports.findPackageManager=a.findPackageManager;exports.findPackageManagerSync=a.findPackageManagerSync;exports.getPackageManagerVersion=a.getPackageManagerVersion;exports.identifyInitiatingPackageManager=a.identifyInitiatingPackageManager;
|