woocommerce/packages/js
2025-02-18 11:14:13 +13:00
..
admin-e2e-tests [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
admin-layout Fix react-18-upgrade TODOs (@ts-expect-error) in WC Admin (#55478) 2025-02-17 02:48:43 +00:00
ai [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
api [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
api-core-tests Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
block-templates [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
components Migrate to register(storeDescriptor) for plugins data store (#55426) 2025-02-14 08:45:06 +00:00
create-product-editor-block Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
create-woo-extension Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
csv-export [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
currency [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
customer-effort-score Migrate to register(storeDescriptor) for options store (#55476) 2025-02-14 15:07:41 +00:00
data Migrate to register(storeDescriptor) for options store (#55476) 2025-02-14 15:07:41 +00:00
date [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
dependency-extraction-webpack-plugin Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
e2e-core-tests Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
e2e-environment Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
e2e-utils Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
e2e-utils-playwright Prepare Packages for Release (#55181) 2025-02-06 12:30:05 +00:00
eslint-plugin Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
experimental Replace react-visibility-sensor with react-intersection-observer to fix deprecated findDOMNode Warning (#55362) 2025-02-13 11:49:31 +08:00
explat [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
expression-evaluation [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
extend-cart-checkout-block Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
integrate-plugin [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
internal-e2e-builds Bump wireit to 0.14.10 (#54996) 2025-01-31 00:48:44 +13:00
internal-js-tests [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
internal-style-build Cherry-pick 54955 into trunk (#55290) 2025-02-11 13:27:09 +02:00
navigation [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
notices [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
number [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
onboarding Fix react-18-upgrade TODOs (@ts-expect-error) in WC Admin (#55478) 2025-02-17 02:48:43 +00:00
product-editor Fix TS errors @woocommerce/beta-tester and re-enable type checking (#55433) 2025-02-17 02:59:16 +00:00
remote-logging [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
settings-editor [Settings] Fix upstream data issues with hidden inputs (#55466) 2025-02-18 11:14:13 +13:00
tracks [dev] Update wireit output dependencies sync at pnpm install (#55095) 2025-02-05 10:28:11 +01:00
README.md
tsconfig-cjs.json
tsconfig.json React 18 - Product Editor fix TS errors (#54108) 2025-01-13 07:38:13 -08:00

WooCommerce Packages

Currently we have a set of public-facing packages that can be downloaded from npm and used in external applications. Here is a non-exhaustive list.

  • @woocommerce/components: A library of components that can be used to create pages in the WooCommerce dashboard and reports pages.
  • @woocommerce/csv-export: A set of functions to convert data into CSV values, and enable a browser download of the CSV data.
  • @woocommerce/currency: A class to display and work with currency values.
  • @woocommerce/date: A collection of utilities to display and work with date values.
  • @woocommerce/navigation: A collection of navigation-related functions for handling query parameter objects, serializing query parameters, updating query parameters, and triggering path changes.
  • @woocommerce/tracks: User event tracking utility functions for Automattic based projects.

Working with existing packages

  • You can make changes to packages files as normal, and running pnpm start will compile and watch both app files and packages.
  • ⚠️ Add any dependencies to a package using pnpm add from the package root.
  • ⚠️ Make sure you're not importing from any other files outside of the package (you can import from other packages, just use the import from @woocommerce/package syntax).
  • Don't change the version in package.json.
  • Label your PR with the Packages label.
  • See the Package Release Tool for instructions on how to release packages.

Creating a new package

Most of this is pulled from the Gutenberg workflow.

To create a new package, add a new folder to /packages, containing…

  1. package.json based on the template:

    {
     "name": "@woocommerce/package-name",
     "version": "1.0.0-beta.0",
     "description": "Package description.",
     "author": "Automattic",
     "license": "GPL-2.0-or-later",
     "keywords": [ "wordpress", "woocommerce" ],
     "homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/[_YOUR_PACKAGE_]/README.md",
     "repository": {
      "type": "git",
      "url": "https://github.com/woocommerce/woocommerce.git"
     },
     "bugs": {
      "url": "https://github.com/woocommerce/woocommerce/issues"
     },
     "main": "build/index.js",
     "module": "build-module/index.js",
     "react-native": "src/index",
     "publishConfig": {
      "access": "public"
     }
    }
    
  2. .npmrc file which disables creating package-lock.json file for the package:

    package-lock=false
    
  3. README.md file containing at least:

    • Package name
    • Package description
    • Installation details
    • Usage example
  4. A src directory for the source of your module. Note that you'll want an index.js file that exports the package contents, see other packages for examples.

  5. A blank Changelog file, changelog.md.

    # Changelog
    
    This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    
  6. Add the new package name to packages/js/dependency-extraction-webpack-plugin/assets/packages.js so that users of that plugin will also be able to use the new package without enqueuing it.