![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@justeattakeaway/pie-webc-core
Advanced tools
PIE design system base classes, mixins and utilities for web components
A core library for PIE web components which contains classes, mixins, utilities and anything other functionality that can be shared across web components.
To add pie-webc-core
to your component, run the following on your command line:
$ yarn add @justeattakeaway/pie-webc-core
import { RequiredProperty, RtlMixin } from '@justeattakeaway/pie-webc-core';
export class MyComponent extends RtlMixin(LitElement) implements MyComponentProps {
// ...
@property({ type: String })
@requiredProperty('my-component')
public value!: string;
// ...
}
This package provides lit
as a dependency which means the package that depends on @justeattakeaway/pie-webc-core
will automatically install lit
into the node_modules
folder of its consuming application.
Other dependencies may be added in future to make it easier for people to install and use our components.
Check out our contributing guide for more information on local development.
To run the unit tests, simply run yarn test --filter=pie-webc-core
from the root of the monorepo.
We write unit tests for small pieces of functionality that can be tested in isolation. These could be things such as class decorators or utility functions. However, sometimes testing in an isolated node environment is not enough. This is where Browser tests come in.
We write browser tests for functionality that requires a browser environment to test. This could be things such as component class mixins. For these, we run our tests using Playwright. This allows us to run our tests in a real browser environment and test things such as DOM manipulation and events. A useful pattern for this kind of testing is to write a mock component that uses the mixin you want to test. This allows you to test the mixin in isolation without having to worry about the implementation of the component itself.
Currently, for writing unit tests we simply name the file **/*.spec.ts
. To write browser tests, we name the file **/*.browser.spec.ts
. This allows us to run all unit tests using yarn test --filter=pie-webc-core
and all browser tests using yarn test:browsers --filter=pie-webc-core
.
FAQs
PIE design system base classes, mixins and utilities for web components
The npm package @justeattakeaway/pie-webc-core receives a total of 907 weekly downloads. As such, @justeattakeaway/pie-webc-core popularity was classified as not popular.
We found that @justeattakeaway/pie-webc-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.