Skip to content

Update some npm dependencies#14451

Merged
swissspidy merged 11 commits intomainfrom
try/fix-deps
Feb 18, 2026
Merged

Update some npm dependencies#14451
swissspidy merged 11 commits intomainfrom
try/fix-deps

Conversation

@swissspidy
Copy link
Collaborator

Summary

User-facing changes

Testing Instructions

  • This is a non-user-facing change and requires no QA

This PR can be tested by following these steps:

Reviews

Does this PR have a security-related impact?

Does this PR change what data or activity we track or use?

Does this PR have a legal-related impact?

Checklist

  • This PR addresses an existing issue and I have linked this PR to it
  • I have tested this code to the best of my abilities
  • I have verified accessibility to the best of my abilities (docs)
  • I have verified i18n and l10n (translation, right-to-left layout) to the best of my abilities
  • This code is covered by automated tests (unit, integration, and/or e2e) to verify it works as intended (docs)
  • I have added documentation where necessary
  • I have added a matching Type: XYZ label to the PR

Fixes #

@gemini-code-assist
Copy link

Summary of Changes

Hello @swissspidy, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on essential maintenance by updating several npm development dependencies to their latest versions. It also includes significant adjustments to linting and formatting configurations, such as disabling specific Oxlint rules and integrating a Prettier XML plugin, to ensure code quality and consistency. Minor stylistic improvements were applied across various files, including GitHub templates and type definitions, to enhance overall readability and maintainability.

Highlights

  • Dependency Updates: Updated several npm development dependencies including cssnano, eslint-plugin-oxlint, html-webpack-plugin, oxlint, prettier, and @types/react to their latest versions, ensuring the project uses up-to-date tools and libraries.
  • Linting Configuration Adjustments: Modified the .oxlintrc.json configuration to disable several new Oxlint rules (accessor-pairs, complexity, no-inline-comments, no-promise-executor-return, no-shadow, no-useless-return, import/no-relative-parent-imports) to prevent false positives or align with existing coding standards.
  • Formatting Tooling Enhancements: Integrated @prettier/plugin-xml into the Prettier configuration to improve XML formatting and updated npm scripts (format:css and added format:css-in-js) to better handle CSS and CSS-in-JS formatting.
  • Code Style and Readability Improvements: Applied minor formatting adjustments across various TypeScript and JavaScript files, including reformatting Omit type definitions for improved readability, adjusting logical operator (&&) line breaks, and removing unnecessary ESLint disablement comments.
  • GitHub Template Refinements: Cleaned up GitHub issue and pull request templates by removing extraneous blank lines and adjusting markdown formatting in several README.md files.
  • Dependabot Configuration Update: Adjusted the formatting of array elements within the dependabot.yml file for consistency.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • .github/ISSUE_TEMPLATE/bug_report.md
    • Removed a blank line.
  • .github/ISSUE_TEMPLATE/enhancement.md
    • Removed a blank line.
  • .github/ISSUE_TEMPLATE/task.md
    • Removed a blank line.
  • .github/PULL_REQUEST_TEMPLATE.md
    • Removed blank lines in the summary and reviews sections.
  • .github/dependabot.yml
    • Adjusted formatting for patterns and versions array elements.
  • .oxlintrc.json
    • Disabled new Oxlint rules: accessor-pairs, complexity, no-inline-comments, no-promise-executor-return, no-shadow, no-useless-return, and import/no-relative-parent-imports.
  • .prettierrc
    • Added @prettier/plugin-xml to the plugins list.
  • .wordpress-org/README.md
    • Removed trailing whitespace.
  • package.json
    • Updated cssnano from ^7.1.1 to ^7.1.2.
    • Updated eslint-plugin-oxlint from ^1.25.0 to ^1.48.0.
    • Updated html-webpack-plugin from ^5.6.4 to ^5.6.6.
    • Updated oxlint from ^1.25.0 to ^1.48.0.
    • Updated prettier from ^3.6.2 to ^3.8.1.
    • Modified format:css script to npm run lint:css:css:fix.
    • Added format:css-in-js script as npm run lint:css:js:fix.
  • packages/animation/README.md
    • Removed trailing whitespace.
  • packages/animation/src/types/effects.ts
    • Reformated AMPEffectTiming interface definition for better readability.
  • packages/dashboard/src/app/views/myStories/karma/myStoriesList.karma.js
    • Adjusted logical operator formatting within isElementVisible function.
  • packages/date/README.md
    • Removed trailing whitespace.
  • packages/date/src/third_party/buildLocalizeFn.ts
    • Reformated LocalizeFn type definition for better readability.
  • packages/design-system/src/components/button/toggleButton.tsx
    • Reformated ToggleProps interface definition for better readability.
  • packages/design-system/src/components/contextMenu/animationContainer.tsx
    • Reformated AnimationContainerProps interface definition for better readability.
  • packages/design-system/src/components/contextMenu/components/button.tsx
    • Reformated MenuButtonProps interface definition for better readability.
  • packages/design-system/src/components/contextMenu/components/item.tsx
    • Reformated MenuItemProps interface definition for better readability.
  • packages/design-system/src/components/contextMenu/components/link.tsx
    • Reformated MenuLinkProps interface definition for better readability.
  • packages/design-system/src/components/contextMenu/styled.tsx
    • Reformated SmartPopoverProps interface definition for better readability.
  • packages/design-system/src/components/datalist/types.ts
    • Reformated SearchInputProps interface definition for better readability.
  • packages/design-system/src/components/hex/hex.tsx
    • Reformated HexProps interface definition for better readability.
  • packages/design-system/src/components/mediaInput/mediaInput.tsx
    • Reformated MediaInputProps interface definition for better readability.
  • packages/design-system/src/components/menu/types.ts
    • Reformated UseDropDownMenuProps and ListGroupProps interface definitions for better readability.
  • packages/design-system/src/components/notificationBubble/types.ts
    • Reformated NotificationBubbleProps interface definition for better readability.
  • packages/design-system/src/components/pill/pillGroup.tsx
    • Reformated PillGroupProps interface definition for better readability.
  • packages/design-system/src/components/switch/switch.tsx
    • Reformated SwitchProps interface definition for better readability.
  • packages/design-system/src/components/textArea/textArea.tsx
    • Reformated TextAreaProps interface definition for better readability.
  • packages/element-library/README.md
    • Added a blank line after the horizontal rule.
  • packages/element-library/src/typings/global.d.ts
    • Reformated AmpVideo and AmpImg interface definitions for better readability.
  • packages/eslint-import-resolver/README.md
    • Removed trailing whitespace from a line in the example usage.
  • packages/i18n/README.md
    • Updated bullet point formatting for exported functions.
  • packages/karma-puppeteer-client/README.md
    • Added semicolons to JavaScript code examples.
  • packages/masks/README.md
    • Added a blank line after the horizontal rule.
  • packages/media/src/types/audioResource.ts
    • Reformated AudioResource interface definition for better readability.
  • packages/migration/README.md
    • Updated bullet point formatting for exports and usage sections.
  • packages/migration/src/migrations/v0004_mediaElementToResource.ts
    • Reformated VideoElementV4, GifElementV4, and ImageElementV4 interface definitions for better readability.
  • packages/migration/src/migrations/v0006_colorToPattern.ts
    • Reformated TextElementV6 and ShapeElementV6 interface definitions for better readability.
  • packages/migration/src/migrations/v0015_fontObjects.ts
    • Reformated TextElementV15 interface definition for better readability.
  • packages/migration/src/migrations/v0018_defaultBackgroundElement.ts
    • Reformated PageV18 interface definition for better readability.
  • packages/migration/src/migrations/v0019_conicToLinear.ts
    • Reformated ShapeElementV19, TextElementV19, and PageV19 interface definitions for better readability.
  • packages/migration/src/migrations/v0023_convertOverlayPattern.ts
    • Reformated PageV23 interface definition for better readability.
  • packages/migration/src/migrations/v0026_backgroundOverlayToOverlay.ts
    • Reformated ShapeElementV26, ImageElementV26, VideoElementV26, and GifElementV26 interface definitions for better readability.
  • packages/migration/src/migrations/v0045_globalPageAdvancement.ts
    • Reformated StoryV45 interface definition for better readability.
  • packages/migration/src/migrations/v0047_fixBrokenTemplates.ts
    • Added ESLint disablement comments for @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, and @typescript-eslint/no-unsafe-argument.
  • packages/moveable/README.md
    • Added a blank line after the horizontal rule.
  • packages/output/src/components/withLink/index.tsx
    • Added ESLint disablement comment for react/jsx-no-target-blank.
  • packages/output/src/typings/global.d.ts
    • Reformated AmpHTMLHtmlElement, AmpVideo, and AmpImg interface definitions for better readability.
  • packages/react/package.json
    • Updated @types/react from ^17.0.44 to ^17.0.91.
  • packages/rich-text/README.md
    • Added a blank line after the horizontal rule.
  • packages/stickers/README.md
    • Removed trailing whitespace.
  • packages/stories-block/src/block/block-types/single-story/embedPreview.js
    • Removed unnecessary ESLint disablement comments for jsx-a11y/no-static-element-interactions.
  • packages/story-editor/src/app/media/utils/useFFmpeg.ts
    • Adjusted logical operator formatting within isTranscodingEnabled variable assignment.
  • packages/story-editor/src/app/story/useStoryReducer/actions.ts
    • Reformated UpdateElementByIdProps interface definition for better readability.
  • packages/story-editor/src/components/library/panes/media/media3p/media3pPane.js
    • Adjusted logical operator formatting within disabled prop assignment.
  • packages/story-editor/src/components/panels/document/taxonomies/taxonomies.js
    • Adjusted logical operator formatting within availableTaxonomies and canCreateTerms variable assignments.
  • packages/story-editor/src/types/story.ts
    • Reformated StorySaveData interface definition for better readability.
  • packages/story-editor/src/utils/useElementsWithLinks.ts
    • Adjusted logical operator formatting within returned object properties.
  • packages/templates/src/types.ts
    • Reformated TemplatePage interface definition for better readability.
  • packages/tracking/README.md
    • Adjusted indentation in the JavaScript code example.
  • packages/units/README.md
    • Removed a blank line.
  • packages/widget/README.md
    • Removed trailing whitespace.
  • packages/wp-dashboard/README.md
    • Removed trailing whitespace.
  • phpcs.xml.dist
    • Reformated exclude-pattern element for better readability.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request includes changes to various files, including updates to dependency versions in package.json, modifications to .oxlintrc.json to disable several linting rules, and adjustments to interface definitions across multiple packages to improve code readability. The reviewer raised concerns about disabling the complexity rule in .oxlintrc.json and suggested creating a follow-up ticket to address complexity issues. Additionally, the reviewer suggested using more targeted eslint-disable comments or explicitly typing the animation parameter in packages/migration/src/migrations/v0047_fixBrokenTemplates.ts to resolve unsafe warnings.

@swissspidy swissspidy added the Type: Infrastructure Changes impacting testing infrastructure or build tooling label Feb 18, 2026
@swissspidy swissspidy marked this pull request as ready for review February 18, 2026 10:14
@swissspidy swissspidy merged commit 4a39bd2 into main Feb 18, 2026
63 of 66 checks passed
@swissspidy swissspidy deleted the try/fix-deps branch February 18, 2026 10:14
@github-actions
Copy link
Contributor

Size Change: 0 B

Total Size: 2.97 MB

ℹ️ View Unchanged
Filename Size
assets/css/chunk-web-stories-glider-rtl.css 711 B
assets/css/chunk-web-stories-glider.css 711 B
assets/css/web-stories-block-rtl.css 4.53 kB
assets/css/web-stories-block.css 4.58 kB
assets/css/web-stories-dashboard-rtl.css 657 B
assets/css/web-stories-dashboard.css 659 B
assets/css/web-stories-editor-rtl.css 767 B
assets/css/web-stories-editor.css 769 B
assets/css/web-stories-embed-rtl.css 670 B
assets/css/web-stories-embed.css 675 B
assets/css/web-stories-list-styles-rtl.css 2.77 kB
assets/css/web-stories-list-styles.css 2.81 kB
assets/css/web-stories-theme-style-twentyeleven-rtl.css 102 B
assets/css/web-stories-theme-style-twentyeleven.css 102 B
assets/css/web-stories-theme-style-twentyfifteen-rtl.css 253 B
assets/css/web-stories-theme-style-twentyfifteen.css 253 B
assets/css/web-stories-theme-style-twentyfourteen-rtl.css 286 B
assets/css/web-stories-theme-style-twentyfourteen.css 286 B
assets/css/web-stories-theme-style-twentyseventeen-rtl.css 310 B
assets/css/web-stories-theme-style-twentyseventeen.css 310 B
assets/css/web-stories-theme-style-twentysixteen-rtl.css 241 B
assets/css/web-stories-theme-style-twentysixteen.css 241 B
assets/css/web-stories-theme-style-twentyten-rtl.css 142 B
assets/css/web-stories-theme-style-twentyten.css 142 B
assets/css/web-stories-theme-style-twentytwelve-rtl.css 265 B
assets/css/web-stories-theme-style-twentytwelve.css 265 B
assets/css/web-stories-theme-style-twentytwenty-rtl.css 86 B
assets/css/web-stories-theme-style-twentytwenty.css 86 B
assets/css/web-stories-theme-style-twentytwentyone-rtl.css 324 B
assets/css/web-stories-theme-style-twentytwentyone.css 324 B
assets/css/web-stories-widget-rtl.css 459 B
assets/css/web-stories-widget.css 459 B
assets/js/945.js 49.5 kB
assets/js/3933.js 12.9 kB
assets/js/4032.js 4.74 kB
assets/js/5169.js 213 kB
assets/js/6531.js 98.9 kB
assets/js/7512.js 7.99 kB
assets/js/7830.js 52.9 kB
assets/js/9057.js 14 kB
assets/js/9391.js 95 B
assets/js/chunk-colorthief.js 2.63 kB
assets/js/chunk-ffmpeg.js 5.96 kB
assets/js/chunk-html-to-image.js 4.51 kB
assets/js/chunk-media-gallery.js 8.42 kB
assets/js/chunk-mediainfo.js 95 B
assets/js/chunk-opentype.js 97 B
assets/js/chunk-react-calendar.js 10.9 kB
assets/js/chunk-react-color.js 26.2 kB
assets/js/chunk-selfie-segmentation.js 16.3 kB
assets/js/chunk-web-stories-glider.js 3.3 kB
assets/js/chunk-web-stories-template-0-metaData.js 546 B
assets/js/chunk-web-stories-template-0.js 10.8 kB
assets/js/chunk-web-stories-template-1-metaData.js 537 B
assets/js/chunk-web-stories-template-1.js 9.12 kB
assets/js/chunk-web-stories-template-2-metaData.js 584 B
assets/js/chunk-web-stories-template-2.js 8.93 kB
assets/js/chunk-web-stories-template-3-metaData.js 533 B
assets/js/chunk-web-stories-template-3.js 8.16 kB
assets/js/chunk-web-stories-template-4-metaData.js 562 B
assets/js/chunk-web-stories-template-4.js 11.6 kB
assets/js/chunk-web-stories-template-5-metaData.js 557 B
assets/js/chunk-web-stories-template-5.js 9.43 kB
assets/js/chunk-web-stories-template-6-metaData.js 566 B
assets/js/chunk-web-stories-template-6.js 6.87 kB
assets/js/chunk-web-stories-template-7-metaData.js 566 B
assets/js/chunk-web-stories-template-7.js 7.05 kB
assets/js/chunk-web-stories-template-8-metaData.js 566 B
assets/js/chunk-web-stories-template-8.js 8.24 kB
assets/js/chunk-web-stories-template-9-metaData.js 577 B
assets/js/chunk-web-stories-template-9.js 8.14 kB
assets/js/chunk-web-stories-template-10-metaData.js 531 B
assets/js/chunk-web-stories-template-10.js 7.18 kB
assets/js/chunk-web-stories-template-11-metaData.js 536 B
assets/js/chunk-web-stories-template-11.js 8.74 kB
assets/js/chunk-web-stories-template-12-metaData.js 494 B
assets/js/chunk-web-stories-template-12.js 8.53 kB
assets/js/chunk-web-stories-template-13-metaData.js 521 B
assets/js/chunk-web-stories-template-13.js 6.84 kB
assets/js/chunk-web-stories-template-14-metaData.js 580 B
assets/js/chunk-web-stories-template-14.js 7.2 kB
assets/js/chunk-web-stories-template-15-metaData.js 541 B
assets/js/chunk-web-stories-template-15.js 8.68 kB
assets/js/chunk-web-stories-template-16-metaData.js 586 B
assets/js/chunk-web-stories-template-16.js 10.4 kB
assets/js/chunk-web-stories-template-17-metaData.js 542 B
assets/js/chunk-web-stories-template-17.js 8.96 kB
assets/js/chunk-web-stories-template-18-metaData.js 582 B
assets/js/chunk-web-stories-template-18.js 9.16 kB
assets/js/chunk-web-stories-template-19-metaData.js 501 B
assets/js/chunk-web-stories-template-19.js 9.05 kB
assets/js/chunk-web-stories-template-20-metaData.js 548 B
assets/js/chunk-web-stories-template-20.js 8.57 kB
assets/js/chunk-web-stories-template-21-metaData.js 536 B
assets/js/chunk-web-stories-template-21.js 9.31 kB
assets/js/chunk-web-stories-template-22-metaData.js 523 B
assets/js/chunk-web-stories-template-22.js 7.34 kB
assets/js/chunk-web-stories-template-23-metaData.js 600 B
assets/js/chunk-web-stories-template-23.js 6.87 kB
assets/js/chunk-web-stories-template-24-metaData.js 516 B
assets/js/chunk-web-stories-template-24.js 11 kB
assets/js/chunk-web-stories-template-25-metaData.js 541 B
assets/js/chunk-web-stories-template-25.js 6.74 kB
assets/js/chunk-web-stories-template-26-metaData.js 598 B
assets/js/chunk-web-stories-template-26.js 6.86 kB
assets/js/chunk-web-stories-template-27-metaData.js 541 B
assets/js/chunk-web-stories-template-27.js 7.6 kB
assets/js/chunk-web-stories-template-28-metaData.js 532 B
assets/js/chunk-web-stories-template-28.js 8.67 kB
assets/js/chunk-web-stories-template-29-metaData.js 561 B
assets/js/chunk-web-stories-template-29.js 8.8 kB
assets/js/chunk-web-stories-template-30-metaData.js 574 B
assets/js/chunk-web-stories-template-30.js 7.32 kB
assets/js/chunk-web-stories-template-31-metaData.js 503 B
assets/js/chunk-web-stories-template-31.js 9.82 kB
assets/js/chunk-web-stories-template-32-metaData.js 551 B
assets/js/chunk-web-stories-template-32.js 12.1 kB
assets/js/chunk-web-stories-template-33-metaData.js 491 B
assets/js/chunk-web-stories-template-33.js 8.83 kB
assets/js/chunk-web-stories-template-34-metaData.js 570 B
assets/js/chunk-web-stories-template-34.js 7.33 kB
assets/js/chunk-web-stories-template-35-metaData.js 565 B
assets/js/chunk-web-stories-template-35.js 8.61 kB
assets/js/chunk-web-stories-template-36-metaData.js 574 B
assets/js/chunk-web-stories-template-36.js 11.8 kB
assets/js/chunk-web-stories-template-37-metaData.js 528 B
assets/js/chunk-web-stories-template-37.js 6.09 kB
assets/js/chunk-web-stories-template-38-metaData.js 568 B
assets/js/chunk-web-stories-template-38.js 7.53 kB
assets/js/chunk-web-stories-template-39-metaData.js 586 B
assets/js/chunk-web-stories-template-39.js 7.7 kB
assets/js/chunk-web-stories-template-40-metaData.js 557 B
assets/js/chunk-web-stories-template-40.js 9.73 kB
assets/js/chunk-web-stories-template-41-metaData.js 569 B
assets/js/chunk-web-stories-template-41.js 7.37 kB
assets/js/chunk-web-stories-template-42-metaData.js 521 B
assets/js/chunk-web-stories-template-42.js 6.76 kB
assets/js/chunk-web-stories-template-43-metaData.js 555 B
assets/js/chunk-web-stories-template-43.js 8.37 kB
assets/js/chunk-web-stories-template-44-metaData.js 579 B
assets/js/chunk-web-stories-template-44.js 10.6 kB
assets/js/chunk-web-stories-template-45-metaData.js 566 B
assets/js/chunk-web-stories-template-45.js 7.06 kB
assets/js/chunk-web-stories-template-46-metaData.js 532 B
assets/js/chunk-web-stories-template-46.js 5.08 kB
assets/js/chunk-web-stories-template-47-metaData.js 589 B
assets/js/chunk-web-stories-template-47.js 8.8 kB
assets/js/chunk-web-stories-template-48-metaData.js 554 B
assets/js/chunk-web-stories-template-48.js 8.68 kB
assets/js/chunk-web-stories-template-49-metaData.js 515 B
assets/js/chunk-web-stories-template-49.js 8.48 kB
assets/js/chunk-web-stories-template-50-metaData.js 504 B
assets/js/chunk-web-stories-template-50.js 8.83 kB
assets/js/chunk-web-stories-template-51-metaData.js 527 B
assets/js/chunk-web-stories-template-51.js 9.89 kB
assets/js/chunk-web-stories-template-52-metaData.js 603 B
assets/js/chunk-web-stories-template-52.js 9.89 kB
assets/js/chunk-web-stories-template-53-metaData.js 553 B
assets/js/chunk-web-stories-template-53.js 5.61 kB
assets/js/chunk-web-stories-template-54-metaData.js 544 B
assets/js/chunk-web-stories-template-54.js 7.4 kB
assets/js/chunk-web-stories-template-55-metaData.js 574 B
assets/js/chunk-web-stories-template-55.js 6.88 kB
assets/js/chunk-web-stories-template-56-metaData.js 542 B
assets/js/chunk-web-stories-template-56.js 9.45 kB
assets/js/chunk-web-stories-template-57-metaData.js 527 B
assets/js/chunk-web-stories-template-57.js 14.2 kB
assets/js/chunk-web-stories-template-58-metaData.js 551 B
assets/js/chunk-web-stories-template-58.js 5.37 kB
assets/js/chunk-web-stories-template-59-metaData.js 588 B
assets/js/chunk-web-stories-template-59.js 8.66 kB
assets/js/chunk-web-stories-template-60-metaData.js 513 B
assets/js/chunk-web-stories-template-60.js 8.83 kB
assets/js/chunk-web-stories-templates.js 638 B
assets/js/chunk-web-stories-textset-0.js 4.57 kB
assets/js/chunk-web-stories-textset-1.js 5.57 kB
assets/js/chunk-web-stories-textset-2.js 6.79 kB
assets/js/chunk-web-stories-textset-3.js 12.6 kB
assets/js/chunk-web-stories-textset-4.js 3.88 kB
assets/js/chunk-web-stories-textset-5.js 5.24 kB
assets/js/chunk-web-stories-textset-6.js 4.96 kB
assets/js/chunk-web-stories-textset-7.js 8.77 kB
assets/js/generateBlurhash.worker.worker.js 1.16 kB
assets/js/web-stories-activation-notice.js 25.4 kB
assets/js/web-stories-block-view.js 859 B
assets/js/web-stories-block.js 29.3 kB
assets/js/web-stories-carousel.js 2.25 kB
assets/js/web-stories-dashboard.js 94.6 kB
assets/js/web-stories-editor.js 1.64 MB
assets/js/web-stories-embed.js 20 B
assets/js/web-stories-tinymce-button.js 6.46 kB
assets/js/web-stories-widget.js 554 B

compressed-size-action

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Type: Infrastructure Changes impacting testing infrastructure or build tooling

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant