dependencies: Upgrade JavaScript dependencies.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-11-04 17:09:45 -07:00 committed by Tim Abbott
parent f2a443a736
commit 8df6eccd42
5 changed files with 1381 additions and 2691 deletions

View File

@ -74,7 +74,7 @@
"turndown": "^7.0.0", "turndown": "^7.0.0",
"url-loader": "^4.1.1", "url-loader": "^4.1.1",
"webfonts-loader": "^7.0.1", "webfonts-loader": "^7.0.1",
"webpack": "5.51.1", "webpack": "^5.61.0",
"webpack-bundle-tracker": "^1.2.0", "webpack-bundle-tracker": "^1.2.0",
"webpack-cli": "^4.6.0", "webpack-cli": "^4.6.0",
"winchan": "^0.2.1", "winchan": "^0.2.1",
@ -88,7 +88,7 @@
"@types/jquery": "^3.3.31", "@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.172", "@types/lodash": "^4.14.172",
"@types/mini-css-extract-plugin": "^2.2.0", "@types/mini-css-extract-plugin": "^2.2.0",
"@types/node": "^14.0.11", "@types/node": "^16.11.6",
"@types/node-fetch": "^2.5.8", "@types/node-fetch": "^2.5.8",
"@types/webpack-dev-server": "^4.1.0", "@types/webpack-dev-server": "^4.1.0",
"@types/zxcvbn": "^4.4.1", "@types/zxcvbn": "^4.4.1",
@ -105,18 +105,18 @@
"eslint-import-resolver-webpack": "^0.13.0", "eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-formatjs": "^2.16.0", "eslint-plugin-formatjs": "^2.16.0",
"eslint-plugin-import": "^2.22.0", "eslint-plugin-import": "^2.22.0",
"eslint-plugin-unicorn": "^37.0.1", "eslint-plugin-unicorn": "^38.0.0",
"jsdom": "^18.0.0", "jsdom": "^18.0.0",
"mockdate": "^3.0.2", "mockdate": "^3.0.2",
"node-fetch": "^2.6.1", "node-fetch": "^2.6.1",
"nyc": "^15.0.0", "nyc": "^15.0.0",
"openapi-examples-validator": "^4.0.0", "openapi-examples-validator": "^4.0.0",
"prettier": "^2.0.5", "prettier": "^2.0.5",
"puppeteer": "^10.0.0", "puppeteer": "^11.0.0",
"source-map": "https://codeload.github.com/benthemonkey/source-map/tar.gz/d95423f77edef6cbb9e21d2d6014c7de85ae220a", "source-map": "https://codeload.github.com/benthemonkey/source-map/tar.gz/d95423f77edef6cbb9e21d2d6014c7de85ae220a",
"stylelint": "^13.0.0", "stylelint": "^14.0.1",
"stylelint-config-prettier": "^9.0.3", "stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^22.0.0", "stylelint-config-standard": "^23.0.0",
"svgo": "^2.0.3", "svgo": "^2.0.3",
"swagger-parser": "^10.0.0", "swagger-parser": "^10.0.0",
"ts-node": "^10.0.0", "ts-node": "^10.0.0",

View File

@ -16,9 +16,9 @@ module.exports = {
// Disable standard rules we don't comply with yet // Disable standard rules we don't comply with yet
"comment-empty-line-before": null, "comment-empty-line-before": null,
"declaration-empty-line-before": null, "declaration-empty-line-before": null,
"keyframes-name-pattern": null,
// Additional stylistic rules "selector-class-pattern": null,
"font-family-name-quotes": "always-where-recommended", "selector-id-pattern": null,
// Compatibility with older browsers // Compatibility with older browsers
"alpha-value-notation": "number", "alpha-value-notation": "number",
@ -45,12 +45,5 @@ module.exports = {
"function-url-scheme-allowed-list": [ "function-url-scheme-allowed-list": [
"data", // Allow data URIs "data", // Allow data URIs
], ],
// We use autoprefixer to generate vendor prefixes
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
}, },
}; };

View File

@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 107
# historical commits sharing the same major version, in which case a # historical commits sharing the same major version, in which case a
# minor version bump suffices. # minor version bump suffices.
PROVISION_VERSION = "164.7" PROVISION_VERSION = "165.0"

4027
yarn.lock

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long