@player-ui/player 0.0.1-next.12 → 0.0.1-next.13
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/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +14 -14
- package/src/player.ts +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -1036,8 +1036,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
1036
1036
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
1037
1037
|
});
|
|
1038
1038
|
};
|
|
1039
|
-
const PLAYER_VERSION = "0.0.1-next.
|
|
1040
|
-
const COMMIT = "
|
|
1039
|
+
const PLAYER_VERSION = "0.0.1-next.13";
|
|
1040
|
+
const COMMIT = "96a4bf63eeaee178aa90a940fb16a8d0636c1097";
|
|
1041
1041
|
const _Player = class {
|
|
1042
1042
|
constructor(config) {
|
|
1043
1043
|
this.logger = new logger.TapableLogger();
|
package/dist/index.esm.js
CHANGED
|
@@ -1036,8 +1036,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
1036
1036
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
1037
1037
|
});
|
|
1038
1038
|
};
|
|
1039
|
-
const PLAYER_VERSION = "0.0.1-next.
|
|
1040
|
-
const COMMIT = "
|
|
1039
|
+
const PLAYER_VERSION = "0.0.1-next.13";
|
|
1040
|
+
const COMMIT = "96a4bf63eeaee178aa90a940fb16a8d0636c1097";
|
|
1041
1041
|
const _Player = class {
|
|
1042
1042
|
constructor(config) {
|
|
1043
1043
|
this.logger = new TapableLogger();
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-ui/player",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@player-ui/binding": "0.0.1-next.
|
|
11
|
-
"@player-ui/constants": "0.0.1-next.
|
|
12
|
-
"@player-ui/data": "0.0.1-next.
|
|
13
|
-
"@player-ui/expressions": "0.0.1-next.
|
|
14
|
-
"@player-ui/flow": "0.0.1-next.
|
|
15
|
-
"@player-ui/logger": "0.0.1-next.
|
|
16
|
-
"@player-ui/partial-match-registry": "0.0.1-next.
|
|
17
|
-
"@player-ui/schema": "0.0.1-next.
|
|
18
|
-
"@player-ui/string-resolver": "0.0.1-next.
|
|
19
|
-
"@player-ui/types": "0.0.1-next.
|
|
20
|
-
"@player-ui/utils": "0.0.1-next.
|
|
21
|
-
"@player-ui/validator": "0.0.1-next.
|
|
22
|
-
"@player-ui/view": "0.0.1-next.
|
|
10
|
+
"@player-ui/binding": "0.0.1-next.13",
|
|
11
|
+
"@player-ui/constants": "0.0.1-next.13",
|
|
12
|
+
"@player-ui/data": "0.0.1-next.13",
|
|
13
|
+
"@player-ui/expressions": "0.0.1-next.13",
|
|
14
|
+
"@player-ui/flow": "0.0.1-next.13",
|
|
15
|
+
"@player-ui/logger": "0.0.1-next.13",
|
|
16
|
+
"@player-ui/partial-match-registry": "0.0.1-next.13",
|
|
17
|
+
"@player-ui/schema": "0.0.1-next.13",
|
|
18
|
+
"@player-ui/string-resolver": "0.0.1-next.13",
|
|
19
|
+
"@player-ui/types": "0.0.1-next.13",
|
|
20
|
+
"@player-ui/utils": "0.0.1-next.13",
|
|
21
|
+
"@player-ui/validator": "0.0.1-next.13",
|
|
22
|
+
"@player-ui/view": "0.0.1-next.13",
|
|
23
23
|
"babel-plugin-preval": "^5.0.0",
|
|
24
24
|
"dequal": "^2.0.2",
|
|
25
25
|
"p-defer": "^3.0.0",
|
package/src/player.ts
CHANGED
|
@@ -27,8 +27,8 @@ import type {
|
|
|
27
27
|
import { NOT_STARTED_STATE } from './types';
|
|
28
28
|
|
|
29
29
|
// Variables injected at build time
|
|
30
|
-
const PLAYER_VERSION = '0.0.1-next.
|
|
31
|
-
const COMMIT = '
|
|
30
|
+
const PLAYER_VERSION = '0.0.1-next.13';
|
|
31
|
+
const COMMIT = '96a4bf63eeaee178aa90a940fb16a8d0636c1097';
|
|
32
32
|
|
|
33
33
|
export interface PlayerPlugin {
|
|
34
34
|
/**
|