Skip to content

Commit

Permalink
chore: use node: prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
crashmax-dev committed Nov 21, 2023
1 parent 09c23a3 commit 027ec1a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/newLocale.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as fs from 'fs/promises';
import fs from 'node:fs/promises';
import type { ArgumentsCamelCase, Argv } from 'yargs';

export const command = 'new';
Expand Down
2 changes: 1 addition & 1 deletion packages/xml-locales/src/modifiers/delete.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { checkKeyValueExist } from '../utils/files.js';
// import { checkKeyValueExist } from '../utils/files.js';
// import { deleteAnswer } from '../../../cli/src/utils/queries.js';
import { sort } from './sort.js';
import type { XmlJson } from '../utils/types.js';
Expand Down
6 changes: 3 additions & 3 deletions packages/xml-locales/src/utils/files.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as fs from 'fs';
import { readFile } from 'fs/promises';
import path from 'path';
import fs from 'node:fs';
import { readFile } from 'node:fs/promises';
import path from 'node:path';

import { Xml } from './xml.js';
import type { StringElement, XmlJson } from './types.js';
Expand Down

0 comments on commit 027ec1a

Please sign in to comment.