1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-27 02:43:45 +02:00

chore: remove rollup filesize plugin to double build speed (#5518)

This commit is contained in:
Brandon Casey 2018-10-22 17:36:36 -04:00 committed by Gary Katsevman
parent d8e88cfdbf
commit a9ae77fa3c
3 changed files with 1486 additions and 5123 deletions

6589
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -140,7 +140,6 @@
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-ignore": "^1.0.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",

View File

@ -4,7 +4,6 @@ import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import filesize from 'rollup-plugin-filesize';
import progress from 'rollup-plugin-progress';
import ignore from 'rollup-plugin-ignore';
import alias from 'rollup-plugin-alias';
@ -71,8 +70,7 @@ export default cliargs => [
json(),
primedCjs,
primedBabel,
cliargs.progress !== false ? progress() : {},
filesize()
cliargs.progress !== false ? progress() : {}
],
onwarn,
watch
@ -100,8 +98,7 @@ export default cliargs => [
}),
json(),
primedBabel,
cliargs.progress !== false ? progress() : {},
filesize()
cliargs.progress !== false ? progress() : {}
],
onwarn,
watch
@ -125,8 +122,7 @@ export default cliargs => [
json(),
primedCjs,
primedBabel,
cliargs.progress !== false ? progress() : {},
filesize()
cliargs.progress !== false ? progress() : {}
],
onwarn,
watch
@ -143,8 +139,7 @@ export default cliargs => [
plugins: [
json(),
primedBabel,
cliargs.progress !== false ? progress() : {},
filesize()
cliargs.progress !== false ? progress() : {}
],
onwarn,
watch
@ -164,8 +159,7 @@ export default cliargs => [
json(),
primedCjs,
primedBabel,
cliargs.progress !== false ? progress() : {},
filesize()
cliargs.progress !== false ? progress() : {}
],
onwarn,
watch
@ -186,8 +180,7 @@ export default cliargs => [
json(),
primedCjs,
primedBabel,
cliargs.progress !== false ? progress() : {},
filesize()
cliargs.progress !== false ? progress() : {}
],
onwarn,
watch