Skip to content

Commit

Permalink
Rename dir
Browse files Browse the repository at this point in the history
  • Loading branch information
asamuzaK committed Dec 15, 2024
1 parent 3f03fe8 commit 9c8659a
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

/* api */
import process from 'node:process';
import { parseCommand } from './modules/commander.js';
import { logErr, throwErr } from './modules/common.js';
import { parseCommand } from './scripts/commander.js';
import { logErr, throwErr } from './scripts/common.js';

/* process */
process.on('uncaughtException', throwErr);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/commander.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { describe, it } from 'mocha';
import {
cleanDirectory, commander, extractLibraries, includeLibraries, parseCommand,
saveLibraryPackage
} from '../modules/commander.js';
} from '../scripts/commander.js';

/* constants */
const DIR_CWD = process.cwd();
Expand Down
2 changes: 1 addition & 1 deletion test/common.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { describe, it } from 'mocha';
/* test */
import {
getType, isString, logErr, logMsg, logWarn, throwErr
} from '../modules/common.js';
} from '../scripts/common.js';

describe('getType', () => {
it('should get Undefined', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/file-util.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { MockAgent, getGlobalDispatcher, setGlobalDispatcher } from 'undici';
/* test */
import {
createFile, fetchText, getStat, isDir, isFile, mkdir, readFile, removeDir, rm
} from '../modules/file-util.js';
} from '../scripts/file-util.js';

/* constants */
const TMPDIR = process.env.TMP || process.env.TMPDIR || process.env.TEMP ||
Expand Down

0 comments on commit 9c8659a

Please sign in to comment.