update dev dependencies

This commit is contained in:
Estevao Soares dos Santos 2019-11-02 22:53:47 +00:00
parent 1cd281f064
commit 5cc3fcc84e
5 changed files with 751 additions and 564 deletions

4
dist/showdown.js vendored
View File

@ -970,7 +970,7 @@ showdown.helper.padEnd = function padEnd (str, targetLength, padString) {
* POLYFILLS
*/
// use this instead of builtin is undefined for IE8 compatibility
if (typeof(console) === 'undefined') {
if (typeof console === 'undefined') {
console = {
warn: function (msg) {
'use strict';
@ -3105,7 +3105,7 @@ showdown.subParser('codeSpans', function (text, options, globals) {
text = globals.converter._dispatch('codeSpans.before', text, options, globals);
if (typeof(text) === 'undefined') {
if (typeof text === 'undefined') {
text = '';
}
text = text.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1267
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -48,7 +48,7 @@
"grunt-conventional-changelog": "^6.1.0",
"grunt-conventional-github-releaser": "^1.0.0",
"grunt-endline": "^0.6.1",
"grunt-eslint": "^19.0.0",
"grunt-eslint": "^22.0.0",
"grunt-simple-mocha": "^0.4.0",
"jsdom": "^13.0.0",
"load-grunt-tasks": "^3.2.0",