Toolchain for building Vue framework libraries.
module.exports = {
presets: ["@forsakringskassan/vite-lib-config/babel"],
};
import { defineConfig } from "@forsakringskassan/vite-lib-config/vite";
export default defineConfig();
In addition to the regular Vite configuration you can also pass the optional fk
property:
export interface FKConfig {
/** path to component to mount by default (default `src/dev-vite/app.vue`) */
entrypoint?: string;
/** mocks to configure with apimock-express (default `[]`) */
mocks?: MockEntry[];
}
{
"scripts": {
"build": "fk-build-vue-lib"
}
}
{
"scripts": {
"build": "fk-build-vue-lib",
+ "postbuild": "fk-api-extractor api-extractor.json",
}
}
Multiple files or globs can be given:
fk-api-extractor api-extractor.*.json
To fix global module augmentations use:
fk-api-extractor --patch-augmentations
Use --help
to see full description.
Create src/local.ts
exporting a single function setup
:
import { createApp } from "vue";
import { type SetupOptions } from "@forsakringskassan/vite-lib-config";
export function setup(options: SetupOptions): void {
const { rootComponent, selector } = options;
const app = createApp(rootComponent);
app.mount(selector);
}
If the setup
function is async (i.e. returns a Promise
) it will be awaited before continuing.
Create src/vite-dev/app.vue
containing the root component you want to serve as a development environment.