mirror of
https://github.com/tauri-apps/tauri-plugin-stronghold.git
synced 2026-01-31 00:35:22 +01:00
* chore(deps): update dependency prettier to v3 * fmt * semver override * update example deps --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <fabianlars@fabianlars.de> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/5474013343 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
import { readFileSync } from "fs";
|
|
|
|
import { createConfig } from "../../shared/rollup.config.mjs";
|
|
|
|
export default createConfig({
|
|
input: "guest-js/index.ts",
|
|
pkg: JSON.parse(
|
|
readFileSync(new URL("./package.json", import.meta.url), "utf8"),
|
|
),
|
|
external: [/^@tauri-apps\/api/],
|
|
});
|