mirror of https://github.com/zulip/zulip.git
dependencies: Upgrade JavaScript dependencies.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
8196c4f63d
commit
892f988404
|
@ -10,10 +10,10 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.3",
|
||||
"@astrojs/starlight": "^0.26.1",
|
||||
"astro": "^4.10.2",
|
||||
"sharp": "^0.32.5",
|
||||
"@astrojs/check": "^0.7.0",
|
||||
"sharp": "^0.33.5",
|
||||
"typescript": "^5.4.5"
|
||||
}
|
||||
}
|
||||
|
|
12
package.json
12
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
|
||||
"packageManager": "pnpm@9.8.0+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.5.5",
|
||||
"@babel/preset-env": "^7.5.5",
|
||||
|
@ -63,7 +63,7 @@
|
|||
"postcss-import": "^16.0.0",
|
||||
"postcss-loader": "^8.0.0",
|
||||
"postcss-prefixwrap": "^1.24.0",
|
||||
"postcss-preset-env": "^9.0.0",
|
||||
"postcss-preset-env": "^10.0.2",
|
||||
"postcss-simple-vars": "^7.0.0",
|
||||
"prom-client": "^15.1.0",
|
||||
"regenerator-runtime": "^0.14.0",
|
||||
|
@ -113,8 +113,8 @@
|
|||
"@types/textarea-caret": "^3.0.3",
|
||||
"@types/tinycolor2": "^1.4.5",
|
||||
"@types/turndown": "^5.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
||||
"@typescript-eslint/parser": "^7.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "^8.2.0",
|
||||
"@typescript-eslint/parser": "^8.2.0",
|
||||
"babel-plugin-istanbul": "^7.0.0",
|
||||
"babel-plugin-rewire-ts": "^1.4.0",
|
||||
"callsites": "^3.1.0",
|
||||
|
@ -133,8 +133,8 @@
|
|||
"eslint-plugin-formatjs": "^4.0.2",
|
||||
"eslint-plugin-import": "^2.22.0",
|
||||
"eslint-plugin-no-jquery": "^3.0.2",
|
||||
"eslint-plugin-unicorn": "^54.0.0",
|
||||
"jsdom": "^24.0.0",
|
||||
"eslint-plugin-unicorn": "^55.0.0",
|
||||
"jsdom": "^25.0.0",
|
||||
"minimist": "^1.2.6",
|
||||
"mkdirp": "^3.0.1",
|
||||
"mockdate": "^3.0.2",
|
||||
|
|
5292
pnpm-lock.yaml
5292
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -50,4 +50,4 @@ API_FEATURE_LEVEL = 283 # Last bumped for can_manage_group
|
|||
# historical commits sharing the same major version, in which case a
|
||||
# minor version bump suffices.
|
||||
|
||||
PROVISION_VERSION = (291, 0) # bumped 2024-08-24 to upgrade python requirements
|
||||
PROVISION_VERSION = (292, 0) # bumped 2024-08-25 to upgrade JavaScript dependencies
|
||||
|
|
|
@ -71,6 +71,8 @@ async function test_reload_hash(page: Page): Promise<void> {
|
|||
const initial_hash = await page.evaluate(() => window.location.hash);
|
||||
|
||||
await page.evaluate(() => {
|
||||
// We haven't converted reload.js to TypeScript yet.
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
||||
zulip_test.initiate_reload({immediate: true});
|
||||
});
|
||||
await page.waitForNavigation();
|
||||
|
|
Loading…
Reference in New Issue