videomail-client 8.2.0 → 8.2.2
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/.eslintrc.js +1 -0
- package/audit-ci.json +0 -1
- package/gulpfile.js +2 -13
- package/package.json +5 -6
- package/prototype/js/videomail-client.js +148 -223
- package/prototype/js/videomail-client.min.js +11 -15
- package/prototype/js/videomail-client.min.js.map +1 -1
- package/src/js/wrappers/visuals/recorder.js +3 -3
- package/TODO.md +0 -18
package/.eslintrc.js
CHANGED
package/audit-ci.json
CHANGED
package/gulpfile.js
CHANGED
|
@@ -70,17 +70,6 @@ function stylus() {
|
|
|
70
70
|
);
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
function todo() {
|
|
74
|
-
return gulp
|
|
75
|
-
.src(["src/**/*.{js, styl}", "gulpfile.js", "prototype/*.html"], { base: "./" })
|
|
76
|
-
.pipe(
|
|
77
|
-
plugins.todo({
|
|
78
|
-
fileName: "TODO.md",
|
|
79
|
-
}),
|
|
80
|
-
)
|
|
81
|
-
.pipe(gulp.dest("./"));
|
|
82
|
-
}
|
|
83
|
-
|
|
84
73
|
const cache = {};
|
|
85
74
|
const packageCache = {};
|
|
86
75
|
|
|
@@ -240,10 +229,10 @@ exports.bumpVersion = function () {
|
|
|
240
229
|
.on("error", log.error);
|
|
241
230
|
};
|
|
242
231
|
|
|
243
|
-
const build = gulp.series(gulp.parallel(gulp.series(stylus, cleanJs, bundle)
|
|
232
|
+
const build = gulp.series(gulp.parallel(gulp.series(stylus, cleanJs, bundle)));
|
|
244
233
|
|
|
245
234
|
exports.watch = gulp.series(
|
|
246
|
-
gulp.parallel(gulp.series(stylus, cleanJs, bundleWithWatchify)
|
|
235
|
+
gulp.parallel(gulp.series(stylus, cleanJs, bundleWithWatchify)),
|
|
247
236
|
gulp.parallel(connectHttp, connectHttps),
|
|
248
237
|
watch,
|
|
249
238
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "videomail-client",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.2",
|
|
4
4
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
5
5
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"@babel/core": "7.25.2",
|
|
51
51
|
"add-eventlistener-with-options": "1.25.5",
|
|
52
52
|
"animitter": "3.0.0",
|
|
53
|
-
"audio-sample": "
|
|
54
|
-
"canvas-to-buffer": "
|
|
53
|
+
"audio-sample": "4.0.1",
|
|
54
|
+
"canvas-to-buffer": "4.0.1",
|
|
55
55
|
"classlist.js": "1.1.20150312",
|
|
56
56
|
"contains": "0.1.1",
|
|
57
|
-
"core-js": "3.
|
|
57
|
+
"core-js": "3.38.0",
|
|
58
58
|
"create-error": "0.3.1",
|
|
59
59
|
"deepmerge": "4.3.1",
|
|
60
60
|
"defined": "1.0.1",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@babel/eslint-parser": "7.25.1",
|
|
85
85
|
"@babel/plugin-transform-runtime": "7.24.7",
|
|
86
86
|
"@babel/preset-env": "7.25.3",
|
|
87
|
-
"audit-ci": "
|
|
87
|
+
"audit-ci": "7.1.0",
|
|
88
88
|
"autoprefixer": "10.4.20",
|
|
89
89
|
"babelify": "10.0.0",
|
|
90
90
|
"body-parser": "1.20.2",
|
|
@@ -114,7 +114,6 @@
|
|
|
114
114
|
"gulp-sourcemaps": "3.0.0",
|
|
115
115
|
"gulp-stylus": "3.0.1",
|
|
116
116
|
"gulp-terser": "2.1.0",
|
|
117
|
-
"gulp-todo": "7.1.1",
|
|
118
117
|
"minimist": "1.2.8",
|
|
119
118
|
"nib": "1.2.0",
|
|
120
119
|
"postcss": "8.4.40",
|