Skip to content

Commit

Permalink
removed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker committed Mar 28, 2024
1 parent 6284010 commit f14eb2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/sync-versions.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import packageJson from "../package.json" assert { type: "json" };
import fs from "fs";
const fs = require("fs");
const packageJson = JSON.parse(fs.readFileSync("package.json", "utf8"));


// check if --increment flag is set
const increment = process.argv.includes("increment");
Expand Down

0 comments on commit f14eb2b

Please sign in to comment.