Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions plugins/performance-lab/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ function perflab_get_standalone_plugin_data(): array {
'speculation-rules' => array(
'constant' => 'SPECULATION_RULES_VERSION',
),
'web-worker-offloading' => array(
'constant' => 'WEB_WORKER_OFFLOADING_VERSION',
'experimental' => true,
),
'webp-uploads' => array(
'constant' => 'WEBP_UPLOADS_VERSION',
),
Expand Down
2 changes: 1 addition & 1 deletion plugins/web-worker-offloading/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Web Worker Offloading
* Plugin URI: https://github.com/WordPress/performance/issues/176
* Description: Offload JavaScript execution to a Web Worker.
* Description: Offloads select JavaScript execution to a Web Worker to reduce work on the main thread and improve the Interaction to Next Paint (INP) metric.
* Requires at least: 6.5
* Requires PHP: 7.2
* Version: 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion plugins/web-worker-offloading/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: performance, JavaScript, web worker, partytown, analytics

Offload JavaScript execution to a Web Worker.
Offloads select JavaScript execution to a Web Worker to reduce work on the main thread and improve the Interaction to Next Paint (INP) metric.

== Description ==

Expand Down