keycloakify 10.0.0-rc.24 → 10.0.0-rc.25

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "10.0.0-rc.24",
3
+ "version": "10.0.0-rc.25",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -722,6 +722,7 @@
722
722
  "bin/shared/constants.d.ts",
723
723
  "bin/shared/constants.js.map",
724
724
  "vite-plugin/index.d.ts",
725
+ "vite-plugin/vite-plugin.d.ts",
725
726
  "vite-plugin/index.js"
726
727
  ],
727
728
  "keywords": [
@@ -0,0 +1,5 @@
1
+ import { type BuildOptions, type UserProvidedBuildOptions } from "../bin/shared/buildOptions";
2
+ export type Params = UserProvidedBuildOptions & {
3
+ postBuild?: (buildOptions: Omit<BuildOptions, "bundler">) => Promise<void>;
4
+ };
5
+ export declare function keycloakify(params?: Params): any;