mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Update devDependencies
This commit is contained in:
parent
866b0ddc6d
commit
c7cd537b4d
4 changed files with 833 additions and 486 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
FROM node:8.4-alpine
|
FROM node:alpine
|
||||||
|
|
||||||
RUN yarn global add gulp@3.9.1
|
RUN yarn global add gulp@3.9.1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,7 @@ class EmailModel
|
||||||
}
|
}
|
||||||
|
|
||||||
static splitEmailLine(line) {
|
static splitEmailLine(line) {
|
||||||
const parsedResult = addressparser.parse(line);
|
const parsedResult = addressparser(line);
|
||||||
if (isNonEmptyArray(parsedResult))
|
if (isNonEmptyArray(parsedResult))
|
||||||
{
|
{
|
||||||
const result = [];
|
const result = [];
|
||||||
|
|
@ -182,7 +182,7 @@ class EmailModel
|
||||||
}
|
}
|
||||||
|
|
||||||
static parseEmailLine(line) {
|
static parseEmailLine(line) {
|
||||||
const parsedResult = addressparser.parse(line);
|
const parsedResult = addressparser(line);
|
||||||
if (isNonEmptyArray(parsedResult))
|
if (isNonEmptyArray(parsedResult))
|
||||||
{
|
{
|
||||||
return _.compact(parsedResult.map(
|
return _.compact(parsedResult.map(
|
||||||
|
|
@ -207,7 +207,7 @@ class EmailModel
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = addressparser.parse(emailAddress);
|
const result = addressparser(emailAddress);
|
||||||
if (isNonEmptyArray(result) && result[0])
|
if (isNonEmptyArray(result) && result[0])
|
||||||
{
|
{
|
||||||
this.name = result[0].name || '';
|
this.name = result[0].name || '';
|
||||||
|
|
|
||||||
68
package.json
68
package.json
|
|
@ -53,76 +53,76 @@
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"Progress.js": "github:usablica/progress.js#v0.1.0",
|
"Progress.js": "github:usablica/progress.js#v0.1.0",
|
||||||
"autolinker": "1.4.4",
|
"autolinker": "1.6.2",
|
||||||
"babel-core": "6.26.0",
|
"babel-core": "6.26.0",
|
||||||
"babel-eslint": "8.0.0",
|
"babel-eslint": "8.2.2",
|
||||||
"babel-loader": "7.1.2",
|
"babel-loader": "7.1.3",
|
||||||
"babel-plugin-transform-decorators-legacy": "1.3.4",
|
"babel-plugin-transform-decorators-legacy": "1.3.4",
|
||||||
"babel-plugin-transform-runtime": "6.23.0",
|
"babel-plugin-transform-runtime": "6.23.0",
|
||||||
"babel-preset-env": "1.6.0",
|
"babel-preset-env": "1.6.1",
|
||||||
"babel-preset-stage-0": "6.24.1",
|
"babel-preset-stage-0": "6.24.1",
|
||||||
"babel-runtime": "6.26.0",
|
"babel-runtime": "6.26.0",
|
||||||
"classnames": "2.2.5",
|
"classnames": "2.2.5",
|
||||||
"copy-webpack-plugin": "4.0.1",
|
"copy-webpack-plugin": "4.4.2",
|
||||||
"element-dataset": "2.2.6",
|
"element-dataset": "2.2.6",
|
||||||
"emailjs-addressparser": "1.0.1",
|
"emailjs-addressparser": "2.0.2",
|
||||||
"es6-promise-polyfill": "1.2.0",
|
"es6-promise-polyfill": "1.2.0",
|
||||||
"eslint": "4.7.2",
|
"eslint": "4.18.1",
|
||||||
"eslint-plugin-compat": "1.0.4",
|
"eslint-plugin-compat": "2.2.0",
|
||||||
"gulp": "3.9.1",
|
"gulp": "3.9.1",
|
||||||
"gulp-autoprefixer": "4.0.0",
|
"gulp-autoprefixer": "4.1.0",
|
||||||
"gulp-cached": "1.1.1",
|
"gulp-cached": "1.1.1",
|
||||||
"gulp-chmod": "2.0.0",
|
"gulp-chmod": "2.0.0",
|
||||||
"gulp-clean-css": "3.9.0",
|
"gulp-clean-css": "3.9.2",
|
||||||
"gulp-concat-util": "0.5.5",
|
"gulp-concat-util": "0.5.5",
|
||||||
"gulp-eol": "0.1.2",
|
"gulp-eol": "0.2.0",
|
||||||
"gulp-eslint": "4.0.0",
|
"gulp-eslint": "4.0.2",
|
||||||
"gulp-expect-file": "0.0.7",
|
"gulp-expect-file": "0.0.7",
|
||||||
"gulp-filter": "5.0.1",
|
"gulp-filter": "5.1.0",
|
||||||
"gulp-header": "1.8.9",
|
"gulp-header": "2.0.1",
|
||||||
"gulp-if": "2.0.2",
|
"gulp-if": "2.0.2",
|
||||||
"gulp-less": "3.3.2",
|
"gulp-less": "4.0.0",
|
||||||
"gulp-livereload": "3.8.1",
|
"gulp-livereload": "3.8.1",
|
||||||
"gulp-notify": "3.0.0",
|
"gulp-notify": "3.2.0",
|
||||||
"gulp-plumber": "1.1.0",
|
"gulp-plumber": "1.2.0",
|
||||||
"gulp-rename": "1.2.2",
|
"gulp-rename": "1.2.2",
|
||||||
"gulp-replace": "0.6.1",
|
"gulp-replace": "0.6.1",
|
||||||
"gulp-rimraf": "0.2.1",
|
"gulp-rimraf": "0.2.2",
|
||||||
"gulp-size": "2.1.0",
|
"gulp-size": "3.0.0",
|
||||||
"gulp-stripbom": "1.0.4",
|
"gulp-stripbom": "1.0.4",
|
||||||
"gulp-through": "0.4.0",
|
"gulp-through": "0.4.0",
|
||||||
"gulp-uglify": "3.0.0",
|
"gulp-uglify": "3.0.0",
|
||||||
"gulp-util": "3.0.8",
|
"gulp-util": "3.0.8",
|
||||||
"gulp-zip": "4.0.0",
|
"gulp-zip": "4.1.0",
|
||||||
"ifvisible.js": "1.0.6",
|
"ifvisible.js": "1.0.6",
|
||||||
"intersection-observer": "0.4.2",
|
"intersection-observer": "0.5.0",
|
||||||
"jquery": "2.2.4",
|
"jquery": "2.2.4",
|
||||||
"jquery-backstretch": "2.1.16",
|
"jquery-backstretch": "2.1.16",
|
||||||
"jquery-mousewheel": "3.1.13",
|
"jquery-mousewheel": "3.1.13",
|
||||||
"jquery-scrollstop": "1.2.0",
|
"jquery-scrollstop": "1.2.0",
|
||||||
"js-cookie": "2.1.4",
|
"js-cookie": "2.2.0",
|
||||||
"json-loader": "0.5.7",
|
"json-loader": "0.5.7",
|
||||||
"json3": "3.3.2",
|
"json3": "3.3.2",
|
||||||
"knockout": "3.4.2",
|
"knockout": "3.4.2",
|
||||||
"knockout-transformations": "2.1.0",
|
"knockout-transformations": "2.1.0",
|
||||||
"knockout-sortable": "0.14.1",
|
"knockout-sortable": "1.1.0",
|
||||||
"lightgallery": "1.2.21",
|
"lightgallery": "1.2.21",
|
||||||
"lozad": "1.0.4",
|
"lozad": "1.3.0",
|
||||||
"matchmedia-polyfill": "0.3.0",
|
"matchmedia-polyfill": "0.3.0",
|
||||||
"moment": "2.18.1",
|
"moment": "2.20.1",
|
||||||
"node-fs": "0.1.7",
|
"node-fs": "0.1.7",
|
||||||
"node-notifier": "5.1.2",
|
"node-notifier": "5.2.1",
|
||||||
"normalize.css": "7.0.0",
|
"normalize.css": "8.0.0",
|
||||||
"openpgp": "2.5.11",
|
"openpgp": "2.6.2",
|
||||||
"opentip": "2.4.3",
|
"opentip": "2.4.3",
|
||||||
"pikaday": "1.6.1",
|
"pikaday": "1.7.0",
|
||||||
"raw-loader": "0.5.1",
|
"raw-loader": "0.5.1",
|
||||||
"rimraf": "2.6.2",
|
"rimraf": "2.6.2",
|
||||||
"run-sequence": "2.2.0",
|
"run-sequence": "2.2.1",
|
||||||
"simplestatemanager": "3.4.0",
|
"simplestatemanager": "4.0.2",
|
||||||
"style-loader": "0.18.2",
|
"style-loader": "0.20.2",
|
||||||
"underscore": "1.8.3",
|
"underscore": "1.8.3",
|
||||||
"webpack": "3.6.0",
|
"webpack": "3.11.0",
|
||||||
"webpack-notifier": "1.5.0"
|
"webpack-notifier": "1.5.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue