@player-ui/player 0.3.0 → 0.3.1-next.0

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
@@ -4272,8 +4272,8 @@ var __async = (__this, __arguments, generator) => {
4272
4272
  step((generator = generator.apply(__this, __arguments)).next());
4273
4273
  });
4274
4274
  };
4275
- const PLAYER_VERSION = "0.3.0";
4276
- const COMMIT = "0cddd31b9d5506e2279e3cb10e0ab30c6f435963";
4275
+ const PLAYER_VERSION = "0.3.1-next.0";
4276
+ const COMMIT = "b51603be07572111ca68e73d1b710ed2d0aa9412";
4277
4277
  const _Player = class {
4278
4278
  constructor(config) {
4279
4279
  this.logger = new TapableLogger();
package/dist/index.esm.js CHANGED
@@ -4259,8 +4259,8 @@ var __async = (__this, __arguments, generator) => {
4259
4259
  step((generator = generator.apply(__this, __arguments)).next());
4260
4260
  });
4261
4261
  };
4262
- const PLAYER_VERSION = "0.3.0";
4263
- const COMMIT = "0cddd31b9d5506e2279e3cb10e0ab30c6f435963";
4262
+ const PLAYER_VERSION = "0.3.1-next.0";
4263
+ const COMMIT = "b51603be07572111ca68e73d1b710ed2d0aa9412";
4264
4264
  const _Player = class {
4265
4265
  constructor(config) {
4266
4266
  this.logger = new TapableLogger();
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@player-ui/player",
3
- "version": "0.3.0",
3
+ "version": "0.3.1-next.0",
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/partial-match-registry": "0.3.0",
11
- "@player-ui/types": "0.3.0",
10
+ "@player-ui/partial-match-registry": "0.3.1-next.0",
11
+ "@player-ui/types": "0.3.1-next.0",
12
12
  "dequal": "^2.0.2",
13
13
  "p-defer": "^3.0.0",
14
14
  "queue-microtask": "^1.2.3",
package/src/player.ts CHANGED
@@ -30,8 +30,8 @@ import type {
30
30
  import { NOT_STARTED_STATE } from './types';
31
31
 
32
32
  // Variables injected at build time
33
- const PLAYER_VERSION = '0.3.0';
34
- const COMMIT = '0cddd31b9d5506e2279e3cb10e0ab30c6f435963';
33
+ const PLAYER_VERSION = '0.3.1-next.0';
34
+ const COMMIT = 'b51603be07572111ca68e73d1b710ed2d0aa9412';
35
35
 
36
36
  export interface PlayerPlugin {
37
37
  /**