Skip to content

Commit

Permalink
Update dependencies and apply coding standard
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Apr 29, 2023
1 parent 7c065ab commit 400af74
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@
},
"dependencies":
{
"commander": "10.0.0",
"commander": "10.0.1",
"fast-glob": "3.2.12"
},
"devDependencies":
{
"@isnotdefined/eslint-config": "8.1.0",
"@types/chai": "4.3.4",
"@isnotdefined/eslint-config": "9.5.0",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/node": "18.16.3",
"chai": "4.3.7",
"eslint": "8.32.0",
"eslint": "8.39.0",
"mocha": "10.2.0",
"rollup": "3.10.0",
"rollup": "3.21.1",
"rollup-plugin-add-shebang": "0.3.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-ts": "3.1.1",
"rollup-plugin-ts": "3.2.0",
"ts-node": "10.9.1",
"typescript": "4.9.4"
"typescript": "5.0.4"
},
"scripts":
{
Expand Down
4 changes: 3 additions & 1 deletion src/core.class.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { EOL } from 'os';
import fs from 'fs';
import glob from 'fast-glob';
import PATH, { dirname, basename } from 'path';

import glob from 'fast-glob';
import { program, Option as CommanderOption } from 'commander';

import { Helper } from './helper.class.js';
import { Option } from './option.class.js';
import { Metadata, File, Data, Chunk } from './core.interface.js';
Expand Down
1 change: 1 addition & 0 deletions src/option.class.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { PathLike } from 'fs';

import { Helper } from './helper.class.js';
import { Options } from './option.interface.js';

Expand Down
3 changes: 2 additions & 1 deletion tests/cli.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import fs from 'fs';
import { expect } from 'chai';
import { exec } from 'child_process';

import { expect } from 'chai';

describe('cli', () =>
{
it('run main command', done =>
Expand Down
1 change: 1 addition & 0 deletions tests/core.class.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect } from 'chai';

import { Core, Option, Helper } from '../src';

describe('core', () =>
Expand Down
1 change: 1 addition & 0 deletions tests/option.class.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect } from 'chai';

import { Option, Helper } from '../src';

describe('option', () =>
Expand Down

0 comments on commit 400af74

Please sign in to comment.