@player-ui/player 0.3.0-next.1 → 0.3.0-next.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/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
|
@@ -1030,8 +1030,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
1030
1030
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
1031
1031
|
});
|
|
1032
1032
|
};
|
|
1033
|
-
const PLAYER_VERSION = "0.3.0-next.
|
|
1034
|
-
const COMMIT = "
|
|
1033
|
+
const PLAYER_VERSION = "0.3.0-next.3";
|
|
1034
|
+
const COMMIT = "92ff0044b739d9cce3b1e37bd729f8241d04a2da";
|
|
1035
1035
|
const _Player = class {
|
|
1036
1036
|
constructor(config) {
|
|
1037
1037
|
this.logger = new logger.TapableLogger();
|
package/dist/index.esm.js
CHANGED
|
@@ -1030,8 +1030,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
1030
1030
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
1031
1031
|
});
|
|
1032
1032
|
};
|
|
1033
|
-
const PLAYER_VERSION = "0.3.0-next.
|
|
1034
|
-
const COMMIT = "
|
|
1033
|
+
const PLAYER_VERSION = "0.3.0-next.3";
|
|
1034
|
+
const COMMIT = "92ff0044b739d9cce3b1e37bd729f8241d04a2da";
|
|
1035
1035
|
const _Player = class {
|
|
1036
1036
|
constructor(config) {
|
|
1037
1037
|
this.logger = new TapableLogger();
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-ui/player",
|
|
3
|
-
"version": "0.3.0-next.
|
|
3
|
+
"version": "0.3.0-next.3",
|
|
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.3.0-next.
|
|
11
|
-
"@player-ui/constants": "0.3.0-next.
|
|
12
|
-
"@player-ui/data": "0.3.0-next.
|
|
13
|
-
"@player-ui/expressions": "0.3.0-next.
|
|
14
|
-
"@player-ui/flow": "0.3.0-next.
|
|
15
|
-
"@player-ui/logger": "0.3.0-next.
|
|
16
|
-
"@player-ui/partial-match-registry": "0.3.0-next.
|
|
17
|
-
"@player-ui/schema": "0.3.0-next.
|
|
18
|
-
"@player-ui/string-resolver": "0.3.0-next.
|
|
19
|
-
"@player-ui/types": "0.3.0-next.
|
|
20
|
-
"@player-ui/utils": "0.3.0-next.
|
|
21
|
-
"@player-ui/validator": "0.3.0-next.
|
|
22
|
-
"@player-ui/view": "0.3.0-next.
|
|
10
|
+
"@player-ui/binding": "0.3.0-next.3",
|
|
11
|
+
"@player-ui/constants": "0.3.0-next.3",
|
|
12
|
+
"@player-ui/data": "0.3.0-next.3",
|
|
13
|
+
"@player-ui/expressions": "0.3.0-next.3",
|
|
14
|
+
"@player-ui/flow": "0.3.0-next.3",
|
|
15
|
+
"@player-ui/logger": "0.3.0-next.3",
|
|
16
|
+
"@player-ui/partial-match-registry": "0.3.0-next.3",
|
|
17
|
+
"@player-ui/schema": "0.3.0-next.3",
|
|
18
|
+
"@player-ui/string-resolver": "0.3.0-next.3",
|
|
19
|
+
"@player-ui/types": "0.3.0-next.3",
|
|
20
|
+
"@player-ui/utils": "0.3.0-next.3",
|
|
21
|
+
"@player-ui/validator": "0.3.0-next.3",
|
|
22
|
+
"@player-ui/view": "0.3.0-next.3",
|
|
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.3.0-next.
|
|
31
|
-
const COMMIT = '
|
|
30
|
+
const PLAYER_VERSION = '0.3.0-next.3';
|
|
31
|
+
const COMMIT = '92ff0044b739d9cce3b1e37bd729f8241d04a2da';
|
|
32
32
|
|
|
33
33
|
export interface PlayerPlugin {
|
|
34
34
|
/**
|