woocommerce/packages/js
Chi-Hsuan Huang c82500bbe8
Cherry pick 51013 and 51046 into release/9.3 (#51108)
* add: sanitise query params in remote logging (PHP) (#51013)

* add: remote logger request uri sanitisation (JS) (#51046)

* add: remote logger request uri sanitisation

* md lint

* Update packages/js/remote-logging/README.md

Co-authored-by: Paul Sealock <psealock@gmail.com>

* pr feedback

---------

Co-authored-by: Paul Sealock <psealock@gmail.com>

---------

Co-authored-by: RJ <27843274+rjchow@users.noreply.github.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
2024-09-03 10:41:51 +01:00
..
admin-e2e-tests CI: update linting jobs to skip build step (#49193) 2024-07-08 08:39:39 +02:00
admin-layout Add changelogs to trigger version bumps in packages (#48645) 2024-07-25 13:57:30 -07: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 Fix typo (README.md) (#50156) 2024-07-31 11:37:15 -07:00
api-core-tests Monorepo: caching deps per target package in GH actions (#49020) 2024-07-10 14:39:49 +02:00
block-templates Add changelogs to trigger version bumps in packages (#48645) 2024-07-25 13:57:30 -07:00
components Mark props with defaults as not required (#50816) 2024-08-21 21:59:42 +02:00
create-product-editor-block Fix product editor block template dependency conflict (#48922) 2024-07-02 04:55:37 -03:00
create-woo-extension Fixed typo WooCommmerce (#50247) 2024-08-02 03:14:15 +00:00
csv-export Prepare Packages for Release (#48411) 2024-06-11 15:59:46 -07:00
currency Cherry pick PR#50802 into trunk (#50811) 2024-08-20 20:44:48 -03:00
customer-effort-score CI: update linting jobs to skip build step (#49193) 2024-07-08 08:39:39 +02:00
data Migrate LYS user meta (#50664) 2024-08-20 13:06:57 +08:00
date Fix markdown typos. (#50282) 2024-08-19 14:59:10 -03:00
dependency-extraction-webpack-plugin Add JS remote logging package (#49702) 2024-08-01 12:35:43 +08:00
e2e-core-tests [Accessibility] Fix misspelling in inline documentation in packages/js/* (#48640) 2024-06-21 10:28:54 -07:00
e2e-environment [Accessibility] Fix typos in packages/js/**/*.md files (#48569) 2024-06-20 13:04:24 -07:00
e2e-utils Fix typos (shopper.js) (#50337) 2024-08-05 15:13:36 +03:00
eslint-plugin [Accessibility] Fix typos in packages/js/**/*.md files (#48569) 2024-06-20 13:04:24 -07:00
experimental Prepare Packages for Release (#50000) 2024-07-25 14:54:32 -07:00
explat Monorepo: caching deps per target package in GH actions (#49020) 2024-07-10 14:39:49 +02:00
expression-evaluation Update to pnpm 9.1 (#47385) 2024-05-13 10:57:39 -03:00
extend-cart-checkout-block Update all blocks to V3 (#48720) 2024-08-20 10:14:11 +00: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 Track frequency of unhandled JS errors with MC Stats (#50155) 2024-08-02 03:04:31 +00:00
internal-style-build Monorepo: actualize loaders paths filtering for better Webpack performance. (#49714) 2024-07-29 15:20:17 +02:00
navigation [Navigation] Prepare to remove feature (#50190) 2024-08-09 14:18:39 +12:00
notices Add changelogs to trigger version bumps in packages (#48645) 2024-07-25 13:57:30 -07:00
number Prepare Packages for Release (#48403) 2024-06-11 15:10:48 -07:00
onboarding Prepare Packages for Release (#50073) 2024-07-29 16:18:37 +03:00
product-editor Update all blocks to V3 (#48720) 2024-08-20 10:14:11 +00:00
remote-logging Cherry pick 51013 and 51046 into release/9.3 (#51108) 2024-09-03 10:41:51 +01:00
tracks Track frequency of unhandled JS errors with MC Stats (#50155) 2024-08-02 03:04:31 +00:00
README.md [Accessibility] Fix typos in packages/js/**/*.md files (#48569) 2024-06-20 13:04:24 -07: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 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.