Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: bump lockfile to v7 #7666

Merged
merged 7 commits into from
Feb 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: fix
  • Loading branch information
zkochan committed Feb 17, 2024
commit dc666f93631a0d46b7313991019892e1a2f17faa
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`writeLockfiles() 1`] = `
"lockfileVersion: '6.1'
"lockfileVersion: '7.0'

dependencies:
is-negative:
Expand Down
2 changes: 1 addition & 1 deletion lockfile/lockfile-file/test/read.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test('readWantedLockfile()', async () => {
const lockfile = await readWantedLockfile(path.join('fixtures', '2'), {
ignoreIncompatible: false,
})
expect(lockfile?.lockfileVersion).toEqual('6.0')
expect(lockfile?.lockfileVersion).toEqual('7.0')
expect(lockfile?.importers).toStrictEqual({
'.': {
dependencies: {
Expand Down
Loading