mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 01:23:31 +01:00
Add webpack building (#907)
* friggin webpack tho
* probably important
* add all the stuff to the package.json
* add minify builds and a nice package.json script to run it all
* clean up
* use uglify harmony branch so we can actually run minify builds that work
* update build system
* make test better
* clean up
* fix issues with compression
*
* c++ requirements in a node lib? whaaaaat?
* fix travis yml?
* put railings on voice connections
* 🖕🏻
* aaaaaa
* handle arraybuffers in the unlikely event one is sent
* support arraybuffers in resolvebuffer
* this needs to be fixed at some point
* this was fixed
* disable filename versioning if env VERSIONED is set to false
* Update ClientDataResolver.js
* Update ClientVoiceManager.js
* Update WebSocketManager.js
* Update ConvertArrayBuffer.js
* Update webpack.html
* enable compression for browser and fix ws error handler
* Update WebSocketManager.js
* everything will be okay gawdl3y
* compression is slower in browser, so rip the last three hours of my life
* Update Constants.js
* Update .gitignore
This commit is contained in:
committed by
Schuyler Cebulskie
parent
b3e795d0b0
commit
2440a4a2c8
16
package.json
16
package.json
@@ -7,7 +7,8 @@
|
||||
"test": "eslint src && node docs/generator test",
|
||||
"docs": "node docs/generator",
|
||||
"test-docs": "node docs/generator test",
|
||||
"lint": "eslint src"
|
||||
"lint": "eslint src",
|
||||
"web-dist": "npm install && ./node_modules/parallel-webpack/bin/run.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -29,16 +30,23 @@
|
||||
"homepage": "https://github.com/hydrabolt/discord.js#readme",
|
||||
"dependencies": {
|
||||
"superagent": "^2.3.0",
|
||||
"tweetnacl": "^0.14.0",
|
||||
"ws": "^1.1.0"
|
||||
"tweetnacl": "^0.14.3",
|
||||
"ws": "^1.1.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"node-opus": "^0.2.0",
|
||||
"opusscript": "^0.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bufferutil": "^1.2.1",
|
||||
"eslint": "^3.10.0",
|
||||
"jsdoc-to-markdown": "^2.0.0"
|
||||
"jsdoc-to-markdown": "^2.0.0",
|
||||
"json-loader": "^0.5.4",
|
||||
"parallel-webpack": "^1.5.0",
|
||||
"uglify-js": "github:mishoo/UglifyJS2#harmony",
|
||||
"utf-8-validate": "^1.2.1",
|
||||
"webpack": "^1.13.3",
|
||||
"zlibjs": "github:imaya/zlib.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
|
||||
Reference in New Issue
Block a user