copy-folder-util 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022-2023 Individual contributors to copy-folder-util
3
+ Copyright (c) 2022-2024 Individual contributors to copy-folder-util
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,4 +1,4 @@
1
- //! copy-folder-util v1.1.2 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License
1
+ //! copy-folder-util v1.1.3 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License
2
2
 
3
3
  export type Settings = {
4
4
  basename: string;
@@ -1,4 +1,4 @@
1
- //! copy-folder-util v1.1.2 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License
1
+ //! copy-folder-util v1.1.3 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License
2
2
 
3
3
  import chalk from 'chalk';
4
4
  import fs from 'fs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copy-folder-util",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Recursively copy files from one folder to another folder (CLI tool designed for use in npm scripts)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -93,17 +93,17 @@
93
93
  },
94
94
  "devDependencies": {
95
95
  "@types/fancy-log": "~2.0",
96
- "@types/node": "~20.8",
97
- "@typescript-eslint/eslint-plugin": "~6.9",
98
- "@typescript-eslint/parser": "~6.9",
96
+ "@types/node": "~20.10",
97
+ "@typescript-eslint/eslint-plugin": "~6.17",
98
+ "@typescript-eslint/parser": "~6.17",
99
99
  "add-dist-header": "~1.3",
100
100
  "assert-deep-strict-equal": "~1.1",
101
101
  "copy-file-util": "~1.1",
102
- "eslint": "~8.53",
102
+ "eslint": "~8.56",
103
103
  "jshint": "~2.13",
104
104
  "mocha": "~10.2",
105
105
  "rimraf": "~5.0",
106
106
  "run-scripts-util": "~1.2",
107
- "typescript": "~5.2"
107
+ "typescript": "~5.3"
108
108
  }
109
109
  }