Skip to content

Commit

Permalink
fix: use node: prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Feb 14, 2024
1 parent 4218695 commit 07c26f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/ini-encoder.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { EOL } from "os";
import { EOL } from "node:os";

export function encode(obj, opt) {
const children = [];
Expand Down
7 changes: 3 additions & 4 deletions src/template.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { join, dirname } from "path";
import { createWriteStream } from "fs";
import { mkdir } from "fs/promises";
import { join, dirname } from "node:path";
import { createWriteStream } from "node:fs";
import { mkdir } from "node:fs/promises";
import { matcher } from "matching-iterator";
import {
merge,
Expand All @@ -12,7 +12,6 @@ import {
} from "hinted-tree-merger";
import { StringContentEntry } from "content-entry";
import { LogLevelMixin } from "loglevel-mixin";

import { asArray, normalizeTemplateSources } from "./util.mjs";
import { ReplaceIfEmpty } from "./mergers/replace-if-empty.mjs";
import { mergers } from "./mergers.mjs";
Expand Down

0 comments on commit 07c26f0

Please sign in to comment.