woocommerce/packages/js
Mahesh Bohara 6ce72a25ba
Add loading state functionality to Schedule button in the calendar (#45645)
* Add loading state functionality to Schedule button in the calendar

* Add changelog

* Updated changelog file
2024-03-19 14:45:27 -04:00
..
admin-e2e-tests add: update onboarding task list copies and illustrations (#44854) 2024-03-14 15:20:31 +08:00
admin-layout Fix product editor UI misbehaving in Calypso (#44132) 2024-01-29 14:09:06 -05:00
ai Properly Configured Wireit Production Builds (#43716) 2024-01-22 10:13:45 -08:00
api Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
api-core-tests Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
block-templates Properly Configured Wireit Production Builds (#43716) 2024-01-22 10:13:45 -08:00
components Tooltip: Fix max width of tooltip (used in Product Editor) (#45358) 2024-03-11 11:04:54 -04:00
create-product-editor-block [create-product-editor-block] Fix product editor block registration (#44194) 2024-02-05 15:59:39 -05:00
create-woo-extension Prepare Packages for Release (#44211) 2024-01-31 18:58:06 +13:00
csv-export Remove redundant dependency on moment in the csv-export package (#45410) 2024-03-12 17:06:53 +13:00
currency Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
customer-effort-score Properly Configured Wireit Production Builds (#43716) 2024-01-22 10:13:45 -08:00
data Data: reduxify suggested products (#44043) 2024-01-24 16:56:41 -04:00
date Revert " Temporarily commented out failing date package test due to the February 29th issue" (#45239) 2024-03-01 22:12:09 +08:00
dependency-extraction-webpack-plugin [DOC] Resolve incorrect branch references in Gutenberg links (#44566) 2024-02-15 14:13:28 -03:00
e2e-core-tests add: update onboarding task list copies and illustrations (#44854) 2024-03-14 15:20:31 +08:00
e2e-environment Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
e2e-utils Make state optional when filling address with e2e-util (#44090) 2024-02-06 09:30:53 -08:00
eslint-plugin [DOC] Resolve incorrect branch references in Gutenberg links (#44566) 2024-02-15 14:13:28 -03:00
experimental Properly Configured Wireit Production Builds (#43716) 2024-01-22 10:13:45 -08:00
explat Add support for WooCommerce Analytics module in @woocommerce/explat (#45131) 2024-03-14 21:43:52 +00:00
expression-evaluation Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
extend-cart-checkout-block Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
integrate-plugin Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
internal-e2e-builds Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
internal-js-tests Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
internal-style-build Improve webpack cache-busting version parameter by using file contents hash (#44838) 2024-02-27 08:07:53 +00:00
navigation Product Editor: load translations (#44520) 2024-02-13 15:38:04 -05:00
notices [DOC] Resolve incorrect branch references in Gutenberg links (#44566) 2024-02-15 14:13:28 -03:00
number Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08:00
onboarding Properly Configured Wireit Production Builds (#43716) 2024-01-22 10:13:45 -08:00
product-editor Add loading state functionality to Schedule button in the calendar (#45645) 2024-03-19 14:45:27 -04:00
tracks Update `wireit` & Optimize Builds (#43595) 2024-01-15 14:06:55 -08: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.