[BREAKING][bun install] Invalidate all the lockfiles

This commit is contained in:
Jarred Sumner
2022-08-05 23:20:24 -07:00
parent b17f5b750e
commit 4c01845f32

View File

@@ -1779,9 +1779,13 @@ pub const PackageIndex = struct {
pub const FormatVersion = enum(u32) {
v0,
// bun v0.0.x - bun v0.1.6
v1,
// bun v0.1.7+
// This change added tarball URLs to npm-resolved packages
v2,
_,
pub const current = FormatVersion.v1;
pub const current = FormatVersion.v2;
};
pub const DependencySlice = ExternalSlice(Dependency);