Skip to content

Commit

Permalink
Update dependencies and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Jan 26, 2024
1 parent 1231774 commit e44d491
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
node-version: 20
- run: npm install
- run: npx c8 --reporter=lcov mocha
- run: npx c8 --reporter lcov mocha
- name: Report to Coveralls
uses: coverallsapp/github-action@v2
with:
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "specut",
"description": "Cut massive test suites into equal chunks",
"version": "2.2.0",
"version": "2.3.0",
"license": "MIT",
"type": "module",
"keywords":
Expand Down Expand Up @@ -30,25 +30,25 @@
},
"dependencies":
{
"commander": "11.0.0",
"fast-glob": "3.3.1"
"commander": "11.1.0",
"fast-glob": "3.3.2"
},
"devDependencies":
{
"@isnotdefined/eslint-config": "9.7.1",
"@types/chai": "4.3.7",
"@types/mocha": "10.0.2",
"@types/node": "20.8.4",
"chai": "4.3.10",
"eslint": "8.51.0",
"@isnotdefined/eslint-config": "9.8.0",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.11.7",
"chai": "5.0.3",
"eslint": "8.56.0",
"mocha": "10.2.0",
"rollup": "4.0.2",
"rollup": "4.9.6",
"rollup-plugin-add-shebang": "0.3.1",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-ts": "3.4.5",
"ts-node": "10.9.1",
"typescript": "5.2.2"
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"scripts":
{
Expand Down
2 changes: 1 addition & 1 deletion tests/cli.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('cli', () =>
{
it('run main command', done =>
{
exec('node --loader ts-node/esm src/cli.ts tests/provider --amount=2', error =>
exec('node --loader ts-node/esm src/cli.ts tests/provider --amount 2', error =>
{
expect(error).to.be.null;
expect(fs.readdirSync('tests/__provider__0')).to.be.eql([ '01', '02', '03', '04' ]);
Expand Down

0 comments on commit e44d491

Please sign in to comment.