vis-dev-utils 4.0.7 → 4.0.8
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/babel-register/index.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Development utilities for the Vis family projects.
|
|
8
8
|
*
|
|
9
|
-
* @version 4.0.
|
|
10
|
-
* @date 2023-
|
|
9
|
+
* @version 4.0.8
|
|
10
|
+
* @date 2023-04-01T05:30:13.702Z
|
|
11
11
|
*
|
|
12
12
|
* @copyright (c) 2011-2017 Almende B.V, http://almende.com
|
|
13
13
|
* @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs
|
package/bin/ci-utils.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Development utilities for the Vis family projects.
|
|
8
8
|
*
|
|
9
|
-
* @version 4.0.
|
|
10
|
-
* @date 2023-
|
|
9
|
+
* @version 4.0.8
|
|
10
|
+
* @date 2023-04-01T05:30:13.702Z
|
|
11
11
|
*
|
|
12
12
|
* @copyright (c) 2011-2017 Almende B.V, http://almende.com
|
|
13
13
|
* @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Development utilities for the Vis family projects.
|
|
8
8
|
*
|
|
9
|
-
* @version 4.0.
|
|
10
|
-
* @date 2023-
|
|
9
|
+
* @version 4.0.8
|
|
10
|
+
* @date 2023-04-01T05:30:13.702Z
|
|
11
11
|
*
|
|
12
12
|
* @copyright (c) 2011-2017 Almende B.V, http://almende.com
|
|
13
13
|
* @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs
|
package/bin/test-e2e-interop.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Development utilities for the Vis family projects.
|
|
8
8
|
*
|
|
9
|
-
* @version 4.0.
|
|
10
|
-
* @date 2023-
|
|
9
|
+
* @version 4.0.8
|
|
10
|
+
* @date 2023-04-01T05:30:13.702Z
|
|
11
11
|
*
|
|
12
12
|
* @copyright (c) 2011-2017 Almende B.V, http://almende.com
|
|
13
13
|
* @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs
|
|
@@ -2549,7 +2549,8 @@ function rename$1 (src, dest, overwrite, cb) {
|
|
|
2549
2549
|
function moveAcrossDevice$1 (src, dest, overwrite, cb) {
|
|
2550
2550
|
const opts = {
|
|
2551
2551
|
overwrite,
|
|
2552
|
-
errorOnExist: true
|
|
2552
|
+
errorOnExist: true,
|
|
2553
|
+
preserveTimestamps: true
|
|
2553
2554
|
};
|
|
2554
2555
|
copy(src, dest, opts, err => {
|
|
2555
2556
|
if (err) return cb(err)
|
|
@@ -2604,7 +2605,8 @@ function rename (src, dest, overwrite) {
|
|
|
2604
2605
|
function moveAcrossDevice (src, dest, overwrite) {
|
|
2605
2606
|
const opts = {
|
|
2606
2607
|
overwrite,
|
|
2607
|
-
errorOnExist: true
|
|
2608
|
+
errorOnExist: true,
|
|
2609
|
+
preserveTimestamps: true
|
|
2608
2610
|
};
|
|
2609
2611
|
copySync(src, dest, opts);
|
|
2610
2612
|
return removeSync(src)
|