Package Exports
- @storefront/paging
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@storefront/paging) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
StoreFront paging
StoreFront <gb-paging> component
Getting Started
This module requires @storefront/core for the component to render
and receive data from GroupBy microservices.
Prerequisites
This module is meant to be used in a node environment which is bundled for use in the browser.
Installing
Use npm or yarn to install in a node project that uses webpack, browserify or similar.
npm install --save @storefront/paging
# or
yarn add @storefront/pagingUsage
This module provides the <gb-paging> component for use with StoreFront.
Mount tag
<!-- index.html -->
<body>
<gb-paging></gb-paging>
</body>// index.js
storefront.mount('gb-paging');Building the package
To build an individual package, run the following command:
yarn buildTo build an individual package in response to changes within the src directory, run the following command:
yarn devRunning tests
To test an individual packages, run the following command:
yarn testTo test an individual package in response to changes within the src and test directories, run the following command:
yarn tddLinting
To lint a package, run the following command:
yarn lintTo programmatically fix lint errors within a package, run the following command:
yarn lint:fixContributing
Read the contributing file to learn about how to contribute to the StoreFront project.
License
StoreFront and its related packages are MIT licensed.