emoji-picker-element/CONTRIBUTING.md

81 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2020-06-26 06:01:25 +02:00
# Contributing
## Basic dev workflow
Install
yarn
Run a local dev server on `localhost:3000`:
yarn dev
## Testing
Lint:
yarn lint
Fix most lint issues:
yarn lint:fix
Run the tests:
yarn test
Check code coverage:
yarn cover
## Other
Benchmark runtime performance:
yarn benchmark:runtime
2020-06-26 06:01:25 +02:00
Benchmark memory usage:
yarn benchmark:memory
Benchmark bundle size:
yarn benchmark:bundlesize
2020-12-25 19:27:25 +01:00
Benchmark storage size:
yarn benchmark:storage
2020-06-26 06:01:25 +02:00
Run memory leak test:
yarn test:leak
Build the GitHub Pages docs site:
yarn docs
## FAQs
Some explanations of why the code is structured the way it is, in case it's confusing.
### Why is it one big Svelte component?
When you build Svelte components with `customElement: true`, it makes _each individual component_ into a web component. This can be bad for perf reasons (lots of repetition, [constructible stylesheets](https://wicg.github.io/construct-stylesheets/) aren't a thing yet, event and prop overhead) as well as correctness reasons (e.g. I want an `<li>` inside of a `<ul>`, not a `<custom-element>` with a shadow DOM and the `<li>` inside of it).
So for now: it's one big component.
### Why use svelte-preprocess?
Since it's one big component, it's more readable if we split up the HTML/CSS/JS. Plus, we can lint the JS more easily that way. Plus, I like SCSS.
### Why are the built JS files at the root of the project?
When publishing to npm, we want people to be able to do e.g. `import Picker from 'emoji-picker-element/picker'`. The only way to get that is to put `picker.js` at the top level.
I could also build a `pkg/` directory and copy the `package.json` into it (this is kinda what Pika Pack does), but for now I'm just keeping things simple.
### Why build two separate bundles?
2020-12-25 19:27:25 +01:00
`picker.js` and `database.js` are designed to be independentally `import`-able. The only way to do this correctly with the right behavior from bundlers like Rollup and Webpack is to create two separate files. Otherwise the bundler would not be able to tree-shake `picker` from `database`.