Releases: rossrobino/domco
@domcojs/vercel@1.0.0
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/deno@1.0.0
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/cloudflare@1.0.0
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
create-domco@2.0.17
Patch Changes
- 9767187: fix: actually push the fix!
create-domco@2.0.16
Patch Changes
- 48ffdbc: fix: prettier tsconfig error, adds better error handling
create-domco@2.0.15
Patch Changes
- 4ad341f: include vite/prettier configs in tsconfig
create-domco@2.0.14
domco@2.3.0
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.
create-domco@2.0.13
domco@2.2.2
Patch Changes
- f545aa5: fix: sets
envDir
to cwd by default