diff --git a/dist/copy-folder.d.ts b/dist/copy-folder.d.ts index fffa515..84343df 100644 --- a/dist/copy-folder.d.ts +++ b/dist/copy-folder.d.ts @@ -1,4 +1,4 @@ -//! copy-folder-util v0.2.1 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License +//! copy-folder-util v0.2.2 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License export declare type Settings = { basename: string; diff --git a/dist/copy-folder.js b/dist/copy-folder.js index 7575d77..cd4491f 100644 --- a/dist/copy-folder.js +++ b/dist/copy-folder.js @@ -1,4 +1,4 @@ -//! copy-folder-util v0.2.1 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License +//! copy-folder-util v0.2.2 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License import fs from 'fs'; import path from 'path'; diff --git a/dist/copy-folder.umd.cjs b/dist/copy-folder.umd.cjs index 3b14e13..0ae4993 100644 --- a/dist/copy-folder.umd.cjs +++ b/dist/copy-folder.umd.cjs @@ -1,4 +1,4 @@ -//! copy-folder-util v0.2.1 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License +//! copy-folder-util v0.2.2 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; diff --git a/package.json b/package.json index be9059b..090688d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "copy-folder-util", - "version": "0.2.1", + "version": "0.2.2", "description": "Recursively copy files from one folder to another folder (CLI tool designed for use in npm scripts)", "license": "MIT", "type": "module", @@ -89,12 +89,12 @@ "devDependencies": { "@types/fancy-log": "~2.0", "@types/node": "~18.11", - "@typescript-eslint/eslint-plugin": "~5.40", - "@typescript-eslint/parser": "~5.40", + "@typescript-eslint/eslint-plugin": "~5.42", + "@typescript-eslint/parser": "~5.42", "add-dist-header": "~0.3", "assert-deep-strict-equal": "~1.0", "copy-file-util": "~0.1", - "eslint": "~8.26", + "eslint": "~8.27", "jshint": "~2.13", "mocha": "~10.1", "rev-web-assets": "~0.1", diff --git a/task-runner.sh.command b/task-runner.sh.command index 46864e6..2381b00 100755 --- a/task-runner.sh.command +++ b/task-runner.sh.command @@ -25,7 +25,7 @@ setupTools() { which node || { echo "Need to install Node.js: https://nodejs.org"; exit; } node --version npm install --no-fund - npm update + npm update --no-fund npm outdated echo } diff --git a/tsconfig.json b/tsconfig.json index 26c605b..616f0a1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES2015", + "target": "ES2016", "module": "ES2020", "moduleResolution": "node", "declaration": true,