Releases: rossrobino/domco
[email protected]
Major Changes
-
51ccc90: Creates separate adapter packages for each adapter. These changes reduces the size of the core package and ensures users only install what is needed.
If you are using an adapter, install the corresponding package
@domcojs/...
. For example, to install the Vercel adapter and update the import statements in yourvite.config
file:npm i -D @domcojs/vercel
- import { adapter } from "domco/adapter/vercel"; + import { adapter } from "@domcojs/vercel";
-
1611dc5: Moves
Injector
to a separate package -@robino/html
This change reduces the size of the core package, not all users need this helper.
If you are using the
Injector
class, install the@robino/html
package and update your import statements accordingly.npm i @robino/html
- import { Injector } from "domco/injector"; + import { Injector } from "@robino/html";
[email protected]
@domcojs/[email protected]
Major Changes
-
51ccc90: Creates separate adapter packages for each adapter. These changes reduces the size of the core package and ensures users only install what is needed.
If you are using an adapter, install the corresponding package
@domcojs/...
. For example, to install the Vercel adapter and update the import statements in yourvite.config
file:npm i -D @domcojs/vercel
- import { adapter } from "domco/adapter/vercel"; + import { adapter } from "@domcojs/vercel";
Patch Changes
@domcojs/[email protected]
Major Changes
-
51ccc90: Creates separate adapter packages for each adapter. These changes reduces the size of the core package and ensures users only install what is needed.
If you are using an adapter, install the corresponding package
@domcojs/...
. For example, to install the Vercel adapter and update the import statements in yourvite.config
file:npm i -D @domcojs/vercel
- import { adapter } from "domco/adapter/vercel"; + import { adapter } from "@domcojs/vercel";
Patch Changes
@domcojs/[email protected]
Major Changes
-
51ccc90: Creates separate adapter packages for each adapter. These changes reduces the size of the core package and ensures users only install what is needed.
If you are using an adapter, install the corresponding package
@domcojs/...
. For example, to install the Vercel adapter and update the import statements in yourvite.config
file:npm i -D @domcojs/vercel
- import { adapter } from "domco/adapter/vercel"; + import { adapter } from "@domcojs/vercel";
Patch Changes
[email protected]
Patch Changes
- 9767187: fix: actually push the fix!
[email protected]
Patch Changes
- 48ffdbc: fix: prettier tsconfig error, adds better error handling
[email protected]
Patch Changes
- 4ad341f: include vite/prettier configs in tsconfig
[email protected]
[email protected]
Minor Changes
- 8428e9a: feat: [Injector] adds
main
method to inject into themain
element. A singleTagDescriptor
can now be provided instead of an array into injection methods.