faxi-kinto-component-library v0.1.0
Faxi-Kinto web component library
Intro
Before you is a React component library based on the components used in the Create a Community - Kinto-Join app.
The package is generated using tsc and webpack.
Webpack is purely used to handle *.css files. Tsc transpiles all of the *.ts/*.tsx files.
- Run
yarn buildto consecutively run webpack and tsc. - Run
yarn startto run (concurrently) both webpack and tsc in watch mode.
Transpiled files are located in the /dist folder.
Install
npm i faxi-kinto-component-libraryUsage
import React from 'react';
import { Button } from 'faxi-kinto-component-library';
const MyClass: React.FC = (): JSX.Element => {
render() {
return <Button />;
}
}The package knows its types, meaning that IntelliSense aids you when using package's components and shows all of the possible props and their definitions.
Tests
Every component is provided with its test file. Run yarn test within the package to run tests.
Note
If your project uses Jest for testing, you must add
moduleNameMapper: {
'\\.(css|less|sass|scss)$': '<rootDir>/__mocks__/styleMock.js',
}and a dummy:
__mocks__/styleMock.js
that just exports a dummy object:
module.exports = {};
This is due to the fact that this package provides a plain styles.css file for global package styling configuration and Jest gets confused when importing css in ts.
License
MIT ©
6 years ago