Update Strophe.js, strophe plugins and backbone.browserStorage

This commit is contained in:
JC Brand 2018-10-21 23:06:09 +02:00
parent a75779300d
commit a49c1f5592
9 changed files with 840 additions and 1075 deletions

View File

@ -6,7 +6,7 @@ cache:
addons:
chrome: stable
node_js:
- 6
- "9"
install: make stamp-npm
before_script: make serve_bg
script: make check

882
dist/converse.js vendored

File diff suppressed because it is too large Load Diff

1004
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -32,15 +32,14 @@
"browser": "*"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.48",
"@babel/core": "^7.0.0-beta.48",
"@babel/preset-env": "^7.0.0-beta.48",
"@babel/preset-es2015": "^7.0.0-beta.49",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@fortawesome/fontawesome-free": "5.3.1",
"awesomplete-avoid-xss": "^1.1.2",
"babel-loader": "^8.0.0-beta.3",
"babel-loader": "^8.0.0",
"backbone": "1.3.3",
"backbone.browserStorage": "jcbrand/Backbone.browserStorage#78e4a58f7cee10cad6af4fd5f3213331a396aa5a",
"backbone.browserStorage": "0.0.4",
"backbone.nativeview": "^0.3.3",
"backbone.overview": "1.0.2",
"backbone.vdomview": "1.0.1",
@ -78,10 +77,9 @@
"sinon": "^2.1.0",
"sizzle": "^2.3.3",
"snabbdom": "0.7.1",
"strophe.js": "strophe/strophejs#a2692dcfdaf7d591254ac73f3d8584992b6f8da7",
"strophejs-plugin-ping": "0.0.1",
"strophejs-plugin-ping": "0.0.3",
"strophejs-plugin-register": "0.0.1",
"strophejs-plugin-rsm": "0.0.1",
"strophejs-plugin-rsm": "0.0.2",
"twemoji": "^11.0.1",
"uglify-es": "^3.0.24",
"urijs": "^1.19.1",

View File

@ -13,7 +13,7 @@
"i18n",
"utils/core",
"moment",
"strophe",
"strophe.js",
"pluggable",
"backbone.noconflict",
"backbone.nativeview",

View File

@ -12,7 +12,7 @@
define(["sizzle",
"converse-core",
"converse-disco",
"strophe.rsm"
"strophejs-plugin-rsm"
], factory);
}(this, function (sizzle, converse) {
"use strict";

View File

@ -8,7 +8,7 @@
* as specified in XEP-0199 XMPP Ping.
*/
(function (root, factory) {
define(["converse-core", "strophe.ping"], factory);
define(["converse-core", "strophejs-plugin-ping"], factory);
}(this, function (converse) {
"use strict";
// Strophe methods for building stanzas

View File

@ -15,7 +15,7 @@
"fast-text-encoding",
"lodash.noconflict",
"backbone",
"strophe",
"strophe.js",
"uri",
"templates/audio.html",
"templates/file.html",

View File

@ -106,9 +106,6 @@ const config = {
"snabbdom-eventlisteners": path.resolve(__dirname, "node_modules/snabbdom/dist/snabbdom-eventlisteners"),
"snabbdom-props": path.resolve(__dirname, "node_modules/snabbdom/dist/snabbdom-props"),
"snabbdom-style": path.resolve(__dirname, "node_modules/snabbdom/dist/snabbdom-style"),
"strophe": path.resolve(__dirname, "node_modules/strophe.js/dist/strophe"),
"strophe.ping": path.resolve(__dirname, "node_modules/strophejs-plugin-ping/strophe.ping"),
"strophe.rsm": path.resolve(__dirname, "node_modules/strophejs-plugin-rsm/strophe.rsm"),
"tovnode": path.resolve(__dirname, "node_modules/snabbdom/dist/tovnode"),
"underscore": path.resolve(__dirname, "src/underscore-shim"),
"uri": path.resolve(__dirname, "node_modules/urijs/src/URI"),