woocommerce/packages/js
Maikel David Pérez Gómez 788b3ef59b
Add async filtering support to the select-control component (#35839)
* Add async filtering support to the select-control component

* Apply comment suggestions

* Apply more comment suggestions
2022-12-07 14:24:32 -03:00
..
admin-e2e-tests Fix some bugs in syncpack configuration (#35651) 2022-11-22 12:06:47 +13:00
api Fix some bugs in syncpack configuration (#35651) 2022-11-22 12:06:47 +13:00
api-core-tests Prepare api-core-tests for release (#35001) 2022-10-17 12:24:07 -06:00
components Add async filtering support to the select-control component (#35839) 2022-12-07 14:24:32 -03:00
create-extension Add WooCommerce Extension environment scaffold (#35755) 2022-12-07 07:16:40 +13:00
csv-export Fix and consolidate linting across the monorepo (#35012) 2022-10-12 15:05:01 +13:00
currency Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
customer-effort-score Add/35129 product mvp ces (#35652) 2022-12-02 05:35:47 -04:00
data Add product variations data store (#35838) 2022-12-06 13:17:49 -08:00
date Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
dependency-extraction-webpack-plugin Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
e2e-core-tests Fix and consolidate linting across the monorepo (#35012) 2022-10-12 15:05:01 +13:00
e2e-environment Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
e2e-utils Fix some bugs in syncpack configuration (#35651) 2022-11-22 12:06:47 +13:00
eslint-plugin Fix and consolidate linting across the monorepo (#35012) 2022-10-12 15:05:01 +13:00
experimental Fix unread notes count in inbox panel (#35396) 2022-11-23 08:52:46 -08:00
explat Fix some bugs in syncpack configuration (#35651) 2022-11-22 12:06:47 +13:00
extend-cart-checkout-block Prepare Packages for Release (#35655) 2022-11-21 09:50:20 -08:00
internal-e2e-builds Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
internal-js-tests Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
internal-style-build Improve element stacking in modals on tablet and mobile (#35733) 2022-11-30 13:28:00 -03:00
navigation Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
notices Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
number Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
onboarding Update pnpm once again to fix issues with auto-install-peers (#35007) 2022-10-10 16:59:51 +13:00
tracks Fix and consolidate linting across the monorepo (#35012) 2022-10-12 15:05:01 +13:00
README.md Fix JS package readme (#35595) 2022-11-16 11:54:47 +13:00
tsconfig-cjs.json Added EOF Newlines 2022-05-10 13:35:31 -07:00
tsconfig.json Update dependencies and jest config to pass admin tests for pnpm 7 (#34428) 2022-08-31 12:06:51 +08: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. 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.