vis-dev-utils 4.0.37 → 4.0.39
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-preset/index.js +0 -2
- package/babel-register/index.js +2 -2
- package/bin/ci-utils.js +2 -2
- package/bin/generate-examples-index.js +7 -8
- package/bin/generate-examples-index.js.map +1 -1
- package/bin/test-e2e-interop.js +18 -26
- package/bin/test-e2e-interop.js.map +1 -1
- package/dist/vis-dev-utils.cjs.js +6 -6
- package/dist/vis-dev-utils.esm.js +6 -6
- package/package.json +8 -9
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-10-
|
|
9
|
+
* @version 4.0.39
|
|
10
|
+
* @date 2023-10-11T21:41:42.001Z
|
|
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
|
|
@@ -2635,32 +2635,24 @@ var lib = {
|
|
|
2635
2635
|
...remove_1
|
|
2636
2636
|
};
|
|
2637
2637
|
|
|
2638
|
-
function ownKeys(
|
|
2639
|
-
function _objectSpread(
|
|
2640
|
-
var ProjectState = /*#__PURE__*/_createClass(
|
|
2641
|
-
/**
|
|
2642
|
-
* This will be resolved or rejected once all the tasks associated with this
|
|
2643
|
-
* project finish.
|
|
2644
|
-
*/
|
|
2645
|
-
|
|
2646
|
-
/**
|
|
2647
|
-
* Run this to mark the project as successfully finished.
|
|
2648
|
-
*/
|
|
2649
|
-
|
|
2650
|
-
/**
|
|
2651
|
-
* Run this to mark the project as failed.
|
|
2652
|
-
*/
|
|
2653
|
-
|
|
2654
|
-
/**
|
|
2655
|
-
* Provide information about current state of the project.
|
|
2656
|
-
*/
|
|
2657
|
-
|
|
2658
|
-
function ProjectState() {
|
|
2638
|
+
function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
2639
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context8, _context9; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context8 = ownKeys(Object(t), !0)).call(_context8, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context9 = ownKeys(Object(t))).call(_context9, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
2640
|
+
var ProjectState = /*#__PURE__*/_createClass(function ProjectState() {
|
|
2659
2641
|
var _this = this;
|
|
2660
2642
|
_classCallCheck(this, ProjectState);
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2643
|
+
/**
|
|
2644
|
+
* This will be resolved or rejected once all the tasks associated with this
|
|
2645
|
+
* project finish.
|
|
2646
|
+
*/
|
|
2647
|
+
/**
|
|
2648
|
+
* Run this to mark the project as successfully finished.
|
|
2649
|
+
*/
|
|
2650
|
+
/**
|
|
2651
|
+
* Run this to mark the project as failed.
|
|
2652
|
+
*/
|
|
2653
|
+
/**
|
|
2654
|
+
* Provide information about current state of the project.
|
|
2655
|
+
*/
|
|
2664
2656
|
_defineProperty(this, "stage", "pending");
|
|
2665
2657
|
this.promise = new _Promise(function (resolve, reject) {
|
|
2666
2658
|
_this.resolve = resolve;
|