blob: a17cab4d50df4732b63d2020e8a7c73c5bcfafd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/// <reference path="../index.d.ts" />
import { join } from "path";
import pkg from "../dist/package.json";
const __dirname = new URL(".", import.meta.url).pathname;
pkg.name = `@oven-sh/${pkg.name}`;
await Bun.write(
join(__dirname, "..", "dist", "package.json"),
JSON.stringify(pkg),
);
|