woocommerce/packages/js
Maikel Perez caa7c8707b
Enable pricing inline actions in the variations table (#48164)
* Create VariationPricingForm component

* Add validations to the VariationPricingForm component

* Add changelog file
2024-06-13 14:41:15 -04:00
..
admin-e2e-tests Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
admin-layout Update tsconfigs to explicitly include files to avoid TS build errors (#47156) 2024-05-07 13:18:56 +12:00
ai [testing workflows] Add workflow_call trigger in CI workflow - support daily and other types of runs (#47612) 2024-05-22 11:04:44 -07:00
api [testing workflows] Add workflow_call trigger in CI workflow - support daily and other types of runs (#47612) 2024-05-22 11:04:44 -07:00
api-core-tests Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
block-templates Determine _product_template_id from WP filter (#47762) 2024-06-07 19:48:20 +00:00
components Add generic error boundary component (#48363) 2024-06-13 05:05:28 +00:00
create-product-editor-block Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
create-woo-extension Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
csv-export Prepare Packages for Release (#48411) 2024-06-11 15:59:46 -07:00
currency Prepare Packages for Release (#48410) 2024-06-11 15:55:38 -07:00
customer-effort-score Prepare Packages for Release (#48409) 2024-06-11 15:49:59 -07:00
data Prepare Packages for Release (#48407) 2024-06-11 15:37:33 -07:00
date Prepare Packages for Release (#48408) 2024-06-11 15:41:49 -07:00
dependency-extraction-webpack-plugin Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
e2e-core-tests Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
e2e-environment Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
e2e-utils Remove onboarding welcome modals (#48346) 2024-06-13 10:39:21 +08:00
eslint-plugin Prepare Packages for Release (#48406) 2024-06-11 15:31:03 -07:00
experimental [testing workflows] Add workflow_call trigger in CI workflow - support daily and other types of runs (#47612) 2024-05-22 11:04:44 -07:00
explat Prepare Packages for Release (#48402) 2024-06-11 22:03:35 +00:00
expression-evaluation Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
extend-cart-checkout-block Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
integrate-plugin [testing workflows] Add workflow_call trigger in CI workflow - support daily and other types of runs (#47612) 2024-05-22 11:04:44 -07:00
internal-e2e-builds Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
internal-js-tests Add unit tests for some tracks in product editor (#48245) 2024-06-10 23:05:20 +08:00
internal-style-build Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
navigation Prepare Packages for Release (#48404) 2024-06-11 15:26:38 -07:00
notices Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
number Prepare Packages for Release (#48403) 2024-06-11 15:10:48 -07:00
onboarding [testing workflows] Add workflow_call trigger in CI workflow - support daily and other types of runs (#47612) 2024-05-22 11:04:44 -07:00
product-editor Enable pricing inline actions in the variations table (#48164) 2024-06-13 14:41:15 -04:00
tracks Prepare Packages for Release (#48405) 2024-06-11 15:29:16 -07: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.