diff --git a/LICENSE.txt b/LICENSE.txt index c9a8f2d..5643b99 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Individual contributors to cli-argv-util +Copyright (c) 2022-2023 Individual contributors to cli-argv-util Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index d5f34cb..212a91d 100644 --- a/package.json +++ b/package.json @@ -74,14 +74,14 @@ }, "devDependencies": { "@types/node": "~18.11", - "@typescript-eslint/eslint-plugin": "~5.43", - "@typescript-eslint/parser": "~5.43", + "@typescript-eslint/eslint-plugin": "~5.47", + "@typescript-eslint/parser": "~5.47", "add-dist-header": "~0.3", "assert-deep-strict-equal": "~1.0", "copy-file-util": "~0.1", - "eslint": "~8.27", + "eslint": "~8.31", "jshint": "~2.13", - "mocha": "~10.1", + "mocha": "~10.2", "rimraf": "~3.0", "run-scripts-util": "~0.1", "typescript": "~4.9" diff --git a/spec/mocha.spec.js b/spec/mocha.spec.js index e212eaa..ceb08ca 100644 --- a/spec/mocha.spec.js +++ b/spec/mocha.spec.js @@ -3,10 +3,10 @@ // Imports import { assertDeepStrictEqual } from 'assert-deep-strict-equal'; +import { cliArgvUtil } from '../dist/cli-argv-util.js'; import fs from 'fs'; -// Setup -import { cliArgvUtil } from '../dist/cli-argv-util.js'; +// Utilities const mockCli = (line) => process.argv = ['node', 'mock.js', ...line.split(' ')]; ////////////////////////////////////////////////////////////////////////////////