mirror of https://github.com/Chocobozzz/PeerTube
Add webtorrent and jquery to webpack
parent
b20b5fed40
commit
c21f59d334
|
@ -90,13 +90,13 @@ styles:
|
|||
badges: false
|
||||
jumbotron: false
|
||||
thumbnails: true
|
||||
alerts: false
|
||||
alerts: true
|
||||
progress-bars: true
|
||||
media: true
|
||||
list-group: false
|
||||
panels: false
|
||||
wells: false
|
||||
responsive-embed: false
|
||||
responsive-embed: true
|
||||
close: false
|
||||
|
||||
# Components w/ JavaScript
|
||||
|
@ -112,7 +112,7 @@ styles:
|
|||
### Bootstrap scripts
|
||||
scripts:
|
||||
transition: false
|
||||
alert: false
|
||||
alert: true
|
||||
button: false
|
||||
carousel: false
|
||||
collapse: false
|
||||
|
|
|
@ -68,7 +68,9 @@ module.exports = {
|
|||
root: helpers.root('src'),
|
||||
|
||||
// remove other default values
|
||||
modulesDirectories: [ 'node_modules' ]
|
||||
modulesDirectories: [ 'node_modules', 'node_modules/blueimp-file-upload/js/vendor' ],
|
||||
|
||||
packageAlias: 'browser'
|
||||
|
||||
},
|
||||
|
||||
|
@ -243,7 +245,8 @@ module.exports = {
|
|||
new webpack.ProvidePlugin({
|
||||
jQuery: 'jquery',
|
||||
$: 'jquery',
|
||||
jquery: 'jquery'
|
||||
jquery: 'jquery',
|
||||
WebTorrent: 'webtorrent/webtorrent.min'
|
||||
})
|
||||
|
||||
],
|
||||
|
@ -257,6 +260,8 @@ module.exports = {
|
|||
node: {
|
||||
global: 'window',
|
||||
crypto: 'empty',
|
||||
fs: 'empty',
|
||||
events: true,
|
||||
module: false,
|
||||
clearImmediate: false,
|
||||
setImmediate: false
|
||||
|
|
|
@ -9,7 +9,6 @@ const commonConfig = require('./webpack.common.js') // the settings that are com
|
|||
/**
|
||||
* Webpack Plugins
|
||||
*/
|
||||
const ProvidePlugin = require('webpack/lib/ProvidePlugin')
|
||||
const DefinePlugin = require('webpack/lib/DefinePlugin')
|
||||
const DedupePlugin = require('webpack/lib/optimize/DedupePlugin')
|
||||
const UglifyJsPlugin = require('webpack/lib/optimize/UglifyJsPlugin')
|
||||
|
|
|
@ -17,3 +17,7 @@ import 'rxjs/add/operator/mergeMap';
|
|||
|
||||
import 'jquery';
|
||||
import 'bootstrap-loader';
|
||||
import 'jquery.ui.widget/jquery.ui.widget';
|
||||
import 'blueimp-file-upload';
|
||||
// TODO: build webtorrent with webpack when https://github.com/webpack/webpack/pull/1931 will be merged
|
||||
import 'webtorrent/webtorrent.min';
|
||||
|
|
Loading…
Reference in New Issue