mirror of
https://github.com/tauri-apps/tauri-plugin-websocket.git
synced 2026-01-31 00:35:19 +01:00
Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/4869194441 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
12 lines
292 B
JavaScript
12 lines
292 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/],
|
|
});
|