Skip to content

Commit

Permalink
fix lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Fantauzzi committed Apr 24, 2024
1 parent 0ee6115 commit d14a0a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node
const { defineCommand, runMain } = require("citty")
const path = require("path")
const fs = require("fs")
const path = require("node:path")
const fs = require("node:fs")

const pkgJson = require("./package.json")

Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/.eslintrcNoBiome.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This is a workaround for https://github.com/eslint/eslint/issues/3458
require("@rushstack/eslint-patch/modern-module-resolution")
const path = require("path")
const path = require("node:path")

module.exports = {
root: true,
Expand Down
4 changes: 2 additions & 2 deletions scripts/makeTsExtensions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from "fs"
import path from "path"
import fs from "node:fs"
import path from "node:path"

/** Don't override those rules */
const blacklist = ["indent"]
Expand Down

0 comments on commit d14a0a4

Please sign in to comment.