@player-ui/player 0.4.0-next.0 → 0.4.0-next.1
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 +3 -3
- package/src/player.ts +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -4421,8 +4421,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4421
4421
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
4422
4422
|
});
|
|
4423
4423
|
};
|
|
4424
|
-
const PLAYER_VERSION = "0.4.0-next.
|
|
4425
|
-
const COMMIT = "
|
|
4424
|
+
const PLAYER_VERSION = "0.4.0-next.1";
|
|
4425
|
+
const COMMIT = "f66def4fd8f14f4898927c9ff6061d6094b7b250";
|
|
4426
4426
|
const _Player = class {
|
|
4427
4427
|
constructor(config) {
|
|
4428
4428
|
this.logger = new TapableLogger();
|
package/dist/index.esm.js
CHANGED
|
@@ -4408,8 +4408,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4408
4408
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
4409
4409
|
});
|
|
4410
4410
|
};
|
|
4411
|
-
const PLAYER_VERSION = "0.4.0-next.
|
|
4412
|
-
const COMMIT = "
|
|
4411
|
+
const PLAYER_VERSION = "0.4.0-next.1";
|
|
4412
|
+
const COMMIT = "f66def4fd8f14f4898927c9ff6061d6094b7b250";
|
|
4413
4413
|
const _Player = class {
|
|
4414
4414
|
constructor(config) {
|
|
4415
4415
|
this.logger = new TapableLogger();
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-ui/player",
|
|
3
|
-
"version": "0.4.0-next.
|
|
3
|
+
"version": "0.4.0-next.1",
|
|
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.4.0-next.
|
|
11
|
-
"@player-ui/types": "0.4.0-next.
|
|
10
|
+
"@player-ui/partial-match-registry": "0.4.0-next.1",
|
|
11
|
+
"@player-ui/types": "0.4.0-next.1",
|
|
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.4.0-next.
|
|
34
|
-
const COMMIT = '
|
|
33
|
+
const PLAYER_VERSION = '0.4.0-next.1';
|
|
34
|
+
const COMMIT = 'f66def4fd8f14f4898927c9ff6061d6094b7b250';
|
|
35
35
|
|
|
36
36
|
export interface PlayerPlugin {
|
|
37
37
|
/**
|