Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Jun 24, 2023
1 parent dfb6dc9 commit 96d5d06
Show file tree
Hide file tree
Showing 11 changed files with 886 additions and 694 deletions.
2 changes: 1 addition & 1 deletion packages/esbuild-why/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"devDependencies": {
"@size-limit/esbuild": "workspace:^",
"@size-limit/file": "workspace:^",
"esbuild": "^0.17.16",
"esbuild": "^0.18.6",
"redux": "^4.2.1",
"size-limit": "workspace:^"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"size-limit": "8.2.4"
},
"dependencies": {
"esbuild": "^0.17.16",
"esbuild": "^0.18.6",
"nanoid": "^3.3.6"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/esbuild/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ it('uses esbuild to make bundle', async () => {
esbuildMetafile: config.checks[0].esbuildMetafile,
esbuildOutfile: config.checks[0].esbuildOutfile,
files: [fixture('big.js')],
size: 2113
size: 2132
}
]
})
Expand Down Expand Up @@ -220,7 +220,7 @@ it('can use `modifyEsbuildConfig` for resolution of aliases', async () => {
return config
}
})
).toBe(2113)
).toBe(2132)
})

it('supports specifying the import', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"size-limit": "8.2.4"
},
"dependencies": {
"semver": "7.4.0"
"semver": "7.5.3"
},
"devDependencies": {
"size-limit": "workspace:^"
Expand Down
4 changes: 2 additions & 2 deletions packages/size-limit/test/run.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,9 @@ it('returns zero for empty file with esbuild and without gzip', async () => {
if (NODE_VERSION >= 16) {
it('allows to use peer dependencies in import', async () => {
await checkJson('combine', [
{ name: 'all', size: 2251 },
{ name: 'all', size: 2269 },
{ name: 'a', size: 1 },
{ name: 'redux', size: 2248 }
{ name: 'redux', size: 2267 }
])
})
}
Expand Down
8 changes: 4 additions & 4 deletions packages/webpack-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"size-limit": "8.2.4"
},
"dependencies": {
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"style-loader": "^3.3.2"
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"style-loader": "^3.3.3"
},
"devDependencies": {
"@size-limit/file": "workspace:^",
"@size-limit/webpack": "workspace:^",
"size-limit": "workspace:^",
"webpack": "^5.79.0"
"webpack": "^5.88.0"
}
}
2 changes: 1 addition & 1 deletion packages/webpack-css/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ it('supports non-JS require', async () => {
}
await run(config)
expect(config.checks[0].size).toBeGreaterThan(1450)
expect(config.checks[0].size).toBeLessThan(2300)
expect(config.checks[0].size).toBeLessThan(2400)
})

it('applies both `modifyWebpackConfig`', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-why/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"@size-limit/webpack": "workspace:^",
"redux": "^4.2.1",
"size-limit": "workspace:^",
"webpack": "^5.79.0"
"webpack": "^5.88.0"
}
}
2 changes: 1 addition & 1 deletion packages/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"dependencies": {
"nanoid": "^3.3.6",
"webpack": "^5.79.0"
"webpack": "^5.88.0"
},
"devDependencies": {
"@size-limit/file": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ it('uses webpack to make bundle', async () => {
{
bundles: [join(config.checks[0].webpackOutput, 'index.js')],
files: [fixture('big.js')],
size: 2456,
size: 2457,
webpackConfig: config.checks[0].webpackConfig,
webpackOutput: config.checks[0].webpackOutput
}
Expand Down

0 comments on commit 96d5d06

Please sign in to comment.