woocommerce/plugins/woocommerce
Albert Juhé Lluveras 67ddade2fd
Delete woocommerce-gutenberg-products-block.php file (#43319)
* Delete woocommerce-gutenberg-products-block.php file

* Add changefile(s) from automation for the following project(s): woocommerce-blocks

---------

Co-authored-by: github-actions <github-actions@github.com>
2024-01-05 15:32:15 +01:00
..
.wordpress-org
assets add: easyship to shipping task for AU, NZ, SG, HK (#41852) 2023-12-14 11:13:08 +08:00
bin Check if WOOCOMMERCE_BLOCKS_PHASE is set inside build-zip script. (#43169) 2024-01-01 17:20:01 +13:00
changelog Delete woocommerce-gutenberg-products-block.php file (#43319) 2024-01-05 15:32:15 +01:00
client Remove old noticed on classic checkout when applying coupon code (#43244) 2024-01-04 12:31:00 +01:00
i18n Update state definitions for Liechtenstein and Chile (#41068) 2023-11-01 05:37:22 -07:00
includes Fix commands with tags breaking the command palette (#43269) 2024-01-05 10:41:37 +01:00
lib Re-add "mobiledetect/mobiledetectlib" library 2023-11-27 18:59:10 +01:00
packages remove superfluous "here" 2023-11-10 15:49:08 +01:00
patterns Fix: migration issues when transitioning from Products (Beta) block to Product Collection block (#43130) 2023-12-29 12:09:12 +05:30
sample-data update references to woocommerce.com to now reference woo.com 2023-11-10 15:49:08 +01:00
src [Experimental] Fix: get the correct min/max price for filtering (#43313) 2024-01-05 17:19:33 +07:00
templates Product Gallery: Simplify the Product Gallery Pop-up (#42797) 2023-12-20 19:03:01 +01:00
tests Add tests for searching for multiple term IDs (#43089) 2024-01-03 19:18:22 -08:00
.distignore Allow changelog in build zip (#40133) 2023-09-13 09:12:51 -05:00
.eslintignore
.eslintrc.js
.gitattributes
.gitignore Fixed Blocks INI File Path 2023-12-09 21:33:34 -08:00
.wp-env.json Add tests for analytics (orders) (#40504) 2023-11-22 15:42:36 +08:00
NEXT_CHANGELOG.md
README.md Merge branch 'trunk' into refactor/task-infrastructure 2023-12-09 21:51:43 -08:00
composer.json Prep trunk for 8.6 cycle (#43021) 2023-12-22 09:27:54 +01:00
composer.lock Update Action Scheduler to 3.7.1 2023-12-14 12:56:05 +00:00
license.txt
package.json Prep trunk for 8.6 cycle (#43021) 2023-12-22 09:27:54 +01:00
phpcs.xml Disable `DisallowShortArraySyntax` and `InternalInjectionMethod` sniffs for blocks files. (#42863) 2023-12-15 12:39:31 +01:00
phpunit.xml Autoload test helpers and exclude from test suites. (#39586) 2023-08-09 15:48:04 -03:00
readme.txt Update readme.txt (#43257) 2024-01-03 19:18:57 -08:00
tsconfig.json
uninstall.php
woocommerce.php Prep trunk for 8.6 cycle (#43021) 2023-12-22 09:27:54 +01:00

README.md

WooCommerce

License WordPress.org downloads WordPress.org rating Build Status codecov

This is the WooCommerce Core plugin. Here you can browse the source and keep track of development. We recommend all developers to follow the WooCommerce development blog to stay up to date about everything happening in the project. You can also follow @DevelopWC on Twitter for the latest development updates.

If you are not a developer, please use the WooCommerce plugin page on WordPress.org.

Getting Started

Please make sure you follow the repository's getting started guide first!

# Make sure that WooCommerce Core and all of its dependencies are built
pnpm --filter=@woocommerce/plugin-woocommerce build 
# Make sure you're in the WooCommerce Core directory
cd plugins/woocommerce
# Start the development environment
pnpm -- wp-env start

You should now be able to visit http://localhost:8888/ and access WooCommerce environment.

Building Components

There are two major client-side components included in WooCommerce Core that can be built, linted, and tested independently. We've organized these components in this way to take advantage of caching to prevent unnecessarily performing expensive rebuilds when only working in one of them.

plugins/woocommerce/client/legacy

This directory contains the Classic CSS and jQuery code for WooCommerce.

# Build the assets.
pnpm --filter=@woocommerce/classic-assets build 
# Lint the assets.
pnpm --filter=@woocommerce/classic-assets lint 

plugins/woocommerce-admin

This directory contains the React-based admin interface.

# Build the React-based admin client.
pnpm --filter=@woocommerce/admin-library build 
# Lint the React-based admin client.
pnpm --filter=@woocommerce/admin-library lint 
# Test the React-based admin client.
pnpm --filter=@woocommerce/admin-library test 

plugins/woocommerce-blocks

This directory contains the client for WooCommerce + Gutenberg.

# Build the Blocks client.
pnpm run --filter=@woocommerce/block-library build 
# Lint the Blocks client.
pnpm run --filter=@woocommerce/block-library lint 
# Test the Blocks client.
pnpm run --filter=@woocommerce/block-library test 

Helper Scripts

Here is a collection of scripts that can help when developing the React-based admin interface.

# Create a develoment build of the React-based admin client.
pnpm --filter=@woocommerce/admin-library dev 
# Create and watch a development build of the React-based admin client.
pnpm --filter=@woocommerce/admin-library start 
# Watch the tests of the React-based admin client.
pnpm --filter=@woocommerce/admin-library test:watch 
# Run a type check over the React-based admin client's TypeScript files.
pnpm --filter=@woocommerce/admin-library ts:check 

Documentation

Reporting Security Issues

To disclose a security issue to our team, please submit a report via HackerOne here.