woocommerce/packages/js
Nathan Silveira 164ae0984c
Fix double scroll in General tab and image upload overlapping (#40977)
Fix double scroll in General tab and image upload overlapping with other blocks
2023-10-31 11:10:40 -03:00
..
admin-e2e-tests Add a workflow to separate out eslint and annotate PRs. (#39704) 2023-08-15 18:21:51 +12:00
admin-layout fix: applied lint autofixes (#39942) 2023-08-30 06:40:45 +08:00
ai [Woo AI] Add background removal feature for the legacy product editor images (#40833) 2023-10-17 14:27:24 -07:00
api Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
api-core-tests Use syncpack customTypes to keep pnpm and node in sync. Update pnpm to 8.6.7 (#39245) 2023-07-18 14:27:18 +12:00
block-templates Changelog 2023-10-18 18:57:22 -04:00
components Unable to select the values from the dropdown menu on the "Products > Add New > Product Catalog" page (#41093) 2023-10-30 12:06:59 -04:00
create-product-editor-block Changelog 2023-08-31 17:08:39 -04:00
create-woo-extension Use syncpack customTypes to keep pnpm and node in sync. Update pnpm to 8.6.7 (#39245) 2023-07-18 14:27:18 +12:00
csv-export Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
currency Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
customer-effort-score Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
data add: core profiler email marketing opt in (#40869) 2023-10-24 17:07:26 +02:00
date Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
dependency-extraction-webpack-plugin Prepare Packages for Release (#41065) 2023-10-31 02:02:59 -07:00
e2e-core-tests Add a workflow to separate out eslint and annotate PRs. (#39704) 2023-08-15 18:21:51 +12:00
e2e-environment Add a workflow to separate out eslint and annotate PRs. (#39704) 2023-08-15 18:21:51 +12:00
e2e-utils Add a workflow to separate out eslint and annotate PRs. (#39704) 2023-08-15 18:21:51 +12:00
eslint-plugin Upgrade TypeScript to v5.1 (#39531) 2023-08-08 16:35:31 +12:00
experimental Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
explat Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
expression-evaluation Initial documentation 2023-10-08 08:13:54 -04:00
extend-cart-checkout-block Use syncpack customTypes to keep pnpm and node in sync. Update pnpm to 8.6.7 (#39245) 2023-07-18 14:27:18 +12:00
integrate-plugin integrate-plugin: remove superfluous test scripts (#41053) 2023-10-27 00:16:31 +02:00
internal-e2e-builds Use syncpack customTypes to keep pnpm and node in sync. Update pnpm to 8.6.7 (#39245) 2023-07-18 14:27:18 +12:00
internal-js-tests CYS - Add LookAndFeel and ToneOfVoice pages (#39979) 2023-09-06 14:21:09 +08:00
internal-style-build Upgrade TypeScript to v5.1 (#39531) 2023-08-08 16:35:31 +12:00
navigation Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
notices Add a workflow to separate out eslint and annotate PRs. (#39704) 2023-08-15 18:21:51 +12:00
number Separate PHP and JS Unit Tests (#40639) 2023-10-06 15:41:47 -07:00
onboarding Remove references to Sofort (#40745) 2023-10-19 13:45:48 +01:00
product-editor Fix double scroll in General tab and image upload overlapping (#40977) 2023-10-31 11:10:40 -03:00
tracks Add a workflow to separate out eslint and annotate PRs. (#39704) 2023-08-15 18:21:51 +12:00
README.md Package Release: handle initial release case (#36922) 2023-02-28 09:36:38 +13: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, which will be built by default using the pnpm run turbo:build command. 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).
  1. 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.