@player-ui/player 0.1.1-next.2 → 0.1.1-next.5

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 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.1.1-next.2";
1040
- const COMMIT = "50ab25a6f8d4fc3974075e600bf21559aec590a0";
1039
+ const PLAYER_VERSION = "0.1.1-next.5";
1040
+ const COMMIT = "f48d91686d024164911827b75361163c827cea00";
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.1.1-next.2";
1040
- const COMMIT = "50ab25a6f8d4fc3974075e600bf21559aec590a0";
1039
+ const PLAYER_VERSION = "0.1.1-next.5";
1040
+ const COMMIT = "f48d91686d024164911827b75361163c827cea00";
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.1.1-next.2",
3
+ "version": "0.1.1-next.5",
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.1.1-next.2",
11
- "@player-ui/constants": "0.1.1-next.2",
12
- "@player-ui/data": "0.1.1-next.2",
13
- "@player-ui/expressions": "0.1.1-next.2",
14
- "@player-ui/flow": "0.1.1-next.2",
15
- "@player-ui/logger": "0.1.1-next.2",
16
- "@player-ui/partial-match-registry": "0.1.1-next.2",
17
- "@player-ui/schema": "0.1.1-next.2",
18
- "@player-ui/string-resolver": "0.1.1-next.2",
19
- "@player-ui/types": "0.1.1-next.2",
20
- "@player-ui/utils": "0.1.1-next.2",
21
- "@player-ui/validator": "0.1.1-next.2",
22
- "@player-ui/view": "0.1.1-next.2",
10
+ "@player-ui/binding": "0.1.1-next.5",
11
+ "@player-ui/constants": "0.1.1-next.5",
12
+ "@player-ui/data": "0.1.1-next.5",
13
+ "@player-ui/expressions": "0.1.1-next.5",
14
+ "@player-ui/flow": "0.1.1-next.5",
15
+ "@player-ui/logger": "0.1.1-next.5",
16
+ "@player-ui/partial-match-registry": "0.1.1-next.5",
17
+ "@player-ui/schema": "0.1.1-next.5",
18
+ "@player-ui/string-resolver": "0.1.1-next.5",
19
+ "@player-ui/types": "0.1.1-next.5",
20
+ "@player-ui/utils": "0.1.1-next.5",
21
+ "@player-ui/validator": "0.1.1-next.5",
22
+ "@player-ui/view": "0.1.1-next.5",
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.1.1-next.2';
31
- const COMMIT = '50ab25a6f8d4fc3974075e600bf21559aec590a0';
30
+ const PLAYER_VERSION = '0.1.1-next.5';
31
+ const COMMIT = 'f48d91686d024164911827b75361163c827cea00';
32
32
 
33
33
  export interface PlayerPlugin {
34
34
  /**