@projectevergreen/astro-wcc 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,12 +6,12 @@ An [Astro](https://astro.build/) integration for SSR Web Components using [WCC](
6
6
 
7
7
  1. Install the plugin into your Astro project
8
8
  ```sh
9
- $ npm i astro-wcc
9
+ $ npm i @projectevergreen/astro-wcc
10
10
  ```
11
11
  1. Then add it to your Astro configuration file
12
12
  ```js
13
13
  import { defineConfig } from 'astro/config';
14
- import astroWcc from 'astro-wcc';
14
+ import astroWcc from '@projectevergreen/astro-wcc';
15
15
 
16
16
  export default defineConfig({
17
17
  integrations: [ astroWcc() ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectevergreen/astro-wcc",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "An Astro integration for SSR Web Components using WCC",
5
5
  "main": "index.js",
6
6
  "type": "module",