lit-html-free
v0.0.1-alpha.14
Published
lit html tools
Downloads
3
Readme
@lit-html-free/{packages}
Custom mono repo for :
Development on current packages
- Run
npm install
- see how to run samples and start coding
Work in progress - not using lerna for mono repo.
Fusebox is in watch mode when running the samples. Any changes to packages/* files triggers rebuild in fusebox.
HMR
is enabled during the samples.
Add new package
- copy folder
./packages/template-package
and give it a new name - update name in package.json
- update description in package.json
- make a new sample- see how to make a new sample
To run samples
You need to read development first before trying to run these.
npm run core-sample
npm run grid-sample
npm run router-sample
npm run realworld-sample
Make new sample
- copy folder
./samples/template-starter
and give it a new name - add script to
package.json
to start it (look at the others for how)
To build all packages
- Set new package version in root
package.json
- Run
npm run build
- this will now build all packages and sync package json version in all.
To publish all packages
- Run
pub-now
to publish- Or
pub-test
to run publish with--dry-run
option
- Or
HMR info
When using the samples all of the @lit-html-free
packages also gets reset. But this will not be the case if you use them in your own project.
Here is how the hmr.ts
file need to look like to reset the router.
You dont need to use clearInstance(null)
but might be useful to reset everything.
import { applyPolyfill, reflowDOM } from 'custom-elements-hmr-polyfill';
import { clearInstance } from '@lit-html-free/core';
import { getRouter } from '@lit-html-free/router';
//cleanup
getRouter().cleanUp(true);
clearInstance(null);
// apply polly fill
applyPolyfill();
//reflow app
reflowDOM();