diff --git a/README.md b/README.md
index 90ddbff..7050c14 100644
--- a/README.md
+++ b/README.md
@@ -15,10 +15,11 @@
✓ Builtin ContextProvider ([Reactive Controller](https://lit.dev/docs/composition/controllers/)) with primitives for lazy loading
✓ Builtin context-provider and context-consumer elements
✓ Conforms with the [Context protocol](https://github.com/webcomponents-cg/community-protocols/blob/main/proposals/context.md)
+ ✓ Full code coverage
### Live example
-- Lit integration: [Shadow DOM](https://codesandbox.io/p/sandbox/wc-context-example-shadow-dom-vite-nkymx3) /
+- Lit integration: [Shadow DOM](https://codesandbox.io/p/sandbox/wc-context-example-shadow-dom-vite-nkymx3) /
### Usage
@@ -27,4 +28,4 @@ Check the documentation https://blikblum.github.io/wc-context/
### License
MIT
-Copyright © 2022 Luiz Américo Pereira Câmara
+Copyright © 2023 Luiz Américo Pereira Câmara aka blikblum
diff --git a/docs/.vitepress/config.js b/docs/.vitepress/config.js
index 164d9d8..100b6ea 100644
--- a/docs/.vitepress/config.js
+++ b/docs/.vitepress/config.js
@@ -1,7 +1,7 @@
export default {
title: 'wc-context',
description: 'Context for web components',
- base: 'wc-context',
+ base: '/wc-context/',
themeConfig: {
sidebar: [
{
@@ -30,5 +30,9 @@ export default {
],
},
],
+ footer: {
+ message: 'Released under the MIT License.',
+ copyright: 'Copyright © 2018-present Luiz Américo Pereira Câmara',
+ },
},
}
diff --git a/docs/index.md b/docs/index.md
index 005aa60..f20cb80 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,3 +1,7 @@
+---
+title: About
+---
+
# wc-context
wc-context is a Javascript library that implements a way to share data between Web Components (in fact, between any HTMLElement). While is inspired by React Context, hence the name, it is designed to fit the most common usage patterns in Web Components ecosystem.
@@ -37,3 +41,13 @@ When the context is deep in the node tree or are not linked to a property use Li
### Lazy loading context data
With `ContextProvider` ([Reactive Controller](https://lit.dev/docs/composition/controllers/)) is possible to implement [data lazy loading](./controllers.md#subclassing-contextprovider).
+
+### Well tested
+
+100% code coverage
+
+## License
+
+MIT
+
+Copyright © 2018 - present Luiz Américo Pereira Câmara aka blikblum
diff --git a/docs/testing.md b/docs/testing.md
index 0658a6d..baf3cfc 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -4,7 +4,7 @@ Components that use contexts can be tested with minimal, if none, adaptations wh
## TLDR
-Check [Vitest](https://vitest.dev/) and [Web Test Runner](https://modern-web.dev/docs/test-runner/overview/) test suites at [testing example folder](../examples/testing/). The library itself is [tested](../test/) with [Jest](https://jestjs.io/).
+Check [Vitest](https://vitest.dev/) and [Web Test Runner](https://modern-web.dev/docs/test-runner/overview/) test suites at [testing example folder](https://github.com/blikblum/wc-context/tree/master/examples/testing). The library itself is [tested](https://github.com/blikblum/wc-context/tree/master/test) with [Jest](https://jestjs.io/).
> The examples use @open-wc/testing that provides time saving utilities
@@ -73,7 +73,6 @@ it('test foo property that consumes a context', async () => {
})
```
-
Provide context using `registerContext` in a parent node
```js