woocommerce/packages/js
Fernando Marichal f437c538e7
Avoid duplicated product request (#46934)
* Add getPermalinkParts utility

* Use getPermalinkParts utility

* Add changelog
2024-04-26 09:56:25 -03:00
..
admin-e2e-tests Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
admin-layout Prepare @woocommerce/admin-layout and block-templates for release (#46538) 2024-04-12 13:52:36 +00:00
ai Add glob, rimraf, and uuid to Syncpack (#46278) 2024-04-11 12:52:49 -03:00
api Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
api-core-tests Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
block-templates Prepare @woocommerce/admin-layout and block-templates for release (#46538) 2024-04-12 13:52:36 +00:00
components Fix invalid date format errors in certain languages (#46932) 2024-04-26 06:28:47 -03:00
create-product-editor-block Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
create-woo-extension Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
csv-export Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
currency Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
customer-effort-score Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
data [Product Block Editor]: update the attributes list optimistically when a new attribute is created (#46717) 2024-04-26 07:53:13 -04:00
date Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
dependency-extraction-webpack-plugin Prepare Packages for Release (#46847) 2024-04-24 08:39:24 +12:00
e2e-core-tests Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
e2e-environment Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
e2e-utils Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
eslint-plugin Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
experimental Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
explat Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
expression-evaluation Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
extend-cart-checkout-block Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
integrate-plugin Add glob, rimraf, and uuid to Syncpack (#46278) 2024-04-11 12:52:49 -03:00
internal-e2e-builds Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
internal-js-tests Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
internal-style-build Revert "Upgrade the WooPayments surfaces to the new designs" (#46915) 2024-04-25 16:24:05 +03:00
navigation Fix back from CYS via LYS goes to Home, not LYS (#46665) 2024-04-22 21:26:32 +12:00
notices Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
number Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
onboarding Revert "Upgrade the WooPayments surfaces to the new designs" (#46915) 2024-04-25 16:24:05 +03:00
product-editor Avoid duplicated product request (#46934) 2024-04-26 09:56:25 -03:00
tracks Update the monorepo to node v20 (#45148) 2024-04-12 13:49:55 -03:00
README.md [DOC] Resolve incorrect branch references in Gutenberg links (#44566) 2024-02-15 14:13:28 -03:00
tsconfig-cjs.json Enforce Strict `@types` Dependencies (#37351) 2023-03-23 18:02:20 -07:00
tsconfig.json Fix TypeScript Incremental Build Regression (#37432) 2023-03-24 12:07:49 -07:00

README.md

WooCommerce Packages

Currently we have a set of public-facing packages that can be dowloaded 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.