@gcorevideo/player 2.22.24 → 2.22.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gcorevideo/player",
3
- "version": "2.22.24",
3
+ "version": "2.22.25",
4
4
  "description": "Gcore JavaScript video player",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
package/rollup.config.js CHANGED
@@ -23,34 +23,34 @@ export default [
23
23
  }
24
24
  ]
25
25
  },
26
- {
27
- input: 'lib/index.plugins.js',
28
- plugins: [
29
- resolve(), // TODO check which aren't inlined in the bundle and put them here
30
- commonjs(),
31
- json(),
32
- polyfillNode(),
33
- sass({
34
- output: 'dist/plugins/index.css',
35
- verbose: true,
36
- }),
37
- string({
38
- include: [
39
- '**/*.ejs',
40
- '**/*.html',
41
- '**/*.svg',
42
- '**/*.worker.js',
43
- ],
44
- }),
45
- ],
46
- output: [
47
- {
48
- file: 'dist/plugins/index.js',
49
- format: 'es',
50
- generatedCode: 'es2015',
51
- }
52
- ]
53
- },
26
+ // {
27
+ // input: 'lib/index.plugins.js',
28
+ // plugins: [
29
+ // resolve(), // TODO check which aren't inlined in the bundle and put them here
30
+ // commonjs(),
31
+ // json(),
32
+ // polyfillNode(),
33
+ // sass({
34
+ // output: 'dist/plugins/index.css',
35
+ // verbose: true,
36
+ // }),
37
+ // string({
38
+ // include: [
39
+ // '**/*.ejs',
40
+ // '**/*.html',
41
+ // '**/*.svg',
42
+ // '**/*.worker.js',
43
+ // ],
44
+ // }),
45
+ // ],
46
+ // output: [
47
+ // {
48
+ // file: 'dist/plugins/index.js',
49
+ // format: 'es',
50
+ // generatedCode: 'es2015',
51
+ // }
52
+ // ]
53
+ // },
54
54
  {
55
55
  input: 'lib/index.js',
56
56
  plugins: [
@@ -71,11 +71,8 @@ describe('BottomGear', () => {
71
71
  })
72
72
  describe('when clicked twice', () => {
73
73
  beforeEach(() => {
74
- console.log('display:%s', bottomGear.$el.find('#gear-options-wrapper').css('display'))
75
74
  bottomGear.$el.find('#gear-button').click()
76
- console.log('display:%s', bottomGear.$el.find('#gear-options-wrapper').css('display'))
77
75
  bottomGear.$el.find('#gear-button').click()
78
- console.log('display:%s', bottomGear.$el.find('#gear-options-wrapper').css('display'))
79
76
  })
80
77
  it('should collapse the gear menu', () => {
81
78
  expect(bottomGear.$el.find('#gear-options-wrapper').css('display')).toBe(
@@ -5,6 +5,7 @@ import { createMockCore, createMockMediaControl } from '../../../testUtils.js'
5
5
  import { ExtendedEvents } from '../../media-control/MediaControl.js'
6
6
 
7
7
  import { LogTracer, Logger, setTracer } from '@gcorevideo/utils'
8
+ import { Events } from '@clappr/core'
8
9
  // import { Events } from '@clappr/core';
9
10
 
10
11
  // Logger.enable('*')