a66d2f8dff
* Fix "toogle" typo in class names * Add changelog file --------- Co-authored-by: Daniel W. Robert <danielwrobert@users.noreply.github.com> |
||
---|---|---|
.. | ||
admin-e2e-tests | ||
admin-layout | ||
ai | ||
api | ||
api-core-tests | ||
block-templates | ||
components | ||
create-product-editor-block | ||
create-woo-extension | ||
csv-export | ||
currency | ||
customer-effort-score | ||
data | ||
date | ||
dependency-extraction-webpack-plugin | ||
e2e-core-tests | ||
e2e-environment | ||
e2e-utils | ||
eslint-plugin | ||
experimental | ||
explat | ||
expression-evaluation | ||
extend-cart-checkout-block | ||
integrate-plugin | ||
internal-e2e-builds | ||
internal-js-tests | ||
internal-style-build | ||
navigation | ||
notices | ||
number | ||
onboarding | ||
product-editor | ||
remote-logging | ||
tracks | ||
README.md | ||
tsconfig-cjs.json | ||
tsconfig.json |
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…
-
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" } }
-
.npmrc
file which disables creatingpackage-lock.json
file for the package:package-lock=false
-
README.md
file containing at least:- Package name
- Package description
- Installation details
- Usage example
-
A
src
directory for the source of your module. Note that you'll want anindex.js
file that exports the package contents, see other packages for examples. -
A blank Changelog file,
changelog.md
.# Changelog This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-
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.