Bump dependencies
This commit is contained in:
parent
3c0238d871
commit
f663f0426b
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
|
@ -44,23 +44,23 @@
|
||||||
"web-test:manual": "MANUAL=1 karma start spec/support/karma.conf.js"
|
"web-test:manual": "MANUAL=1 karma start spec/support/karma.conf.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@rollup/plugin-multi-entry": "^3.0.0",
|
||||||
"buffer-to-stream": "^1.0.0",
|
"buffer-to-stream": "^1.0.0",
|
||||||
"codemirror": "^5.47.0",
|
"codemirror": "^5.50.2",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^6.8.0",
|
||||||
"eslint-plugin-jasmine": "^2.10.1",
|
"eslint-plugin-jasmine": "^4.1.0",
|
||||||
"jasmine": "^3.4.0",
|
"jasmine": "^3.5.0",
|
||||||
"karma": "^4.1.0",
|
"karma": "^4.4.1",
|
||||||
"karma-chrome-launcher": "^2.2.0",
|
"karma-chrome-launcher": "^3.1.0",
|
||||||
"karma-detect-browsers": "^2.3.3",
|
"karma-detect-browsers": "^2.3.3",
|
||||||
"karma-firefox-launcher": "^1.1.0",
|
"karma-firefox-launcher": "^1.3.0",
|
||||||
"karma-jasmine": "^2.0.1",
|
"karma-jasmine": "^3.1.0",
|
||||||
"karma-safari-launcher": "^1.0.0",
|
"karma-safari-launcher": "^1.0.0",
|
||||||
"pngcrush": "^2.0.1",
|
"pngcrush": "^2.0.1",
|
||||||
"requirejs": "^2.3.6",
|
"requirejs": "^2.3.6",
|
||||||
"rollup": "^1.15.6",
|
"rollup": "^1.29.0",
|
||||||
"rollup-plugin-hypothetical": "^2.1.0",
|
"rollup-plugin-hypothetical": "^2.1.0",
|
||||||
"rollup-plugin-multi-entry": "^2.1.0",
|
"source-map-support": "^0.5.16",
|
||||||
"source-map-support": "^0.5.12",
|
|
||||||
"svg2png": "^4.1.1",
|
"svg2png": "^4.1.1",
|
||||||
"uglify-es": "3.2.2"
|
"uglify-es": "3.2.2"
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,6 +4,7 @@ import {nodejs} from '../../scripts/core/browser.mjs';
|
||||||
describe('ImageRegion', () => {
|
describe('ImageRegion', () => {
|
||||||
function makeCanvas(w, h) {
|
function makeCanvas(w, h) {
|
||||||
if(nodejs) {
|
if(nodejs) {
|
||||||
|
// eslint-disable-next-line jasmine/no-pending-tests
|
||||||
return pending('No canvas support in NodeJS');
|
return pending('No canvas support in NodeJS');
|
||||||
}
|
}
|
||||||
const canvas = document.createElement('canvas');
|
const canvas = document.createElement('canvas');
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import multiEntry from 'rollup-plugin-multi-entry';
|
import multiEntry from '@rollup/plugin-multi-entry';
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,8 @@
|
||||||
.CodeMirror-lines {
|
.CodeMirror-lines {
|
||||||
padding: 4px 0; /* Vertical padding around content */
|
padding: 4px 0; /* Vertical padding around content */
|
||||||
}
|
}
|
||||||
.CodeMirror pre {
|
.CodeMirror pre.CodeMirror-line,
|
||||||
|
.CodeMirror pre.CodeMirror-line-like {
|
||||||
padding: 0 4px; /* Horizontal padding of content */
|
padding: 0 4px; /* Horizontal padding of content */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +97,7 @@
|
||||||
|
|
||||||
.CodeMirror-rulers {
|
.CodeMirror-rulers {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0; right: 0; top: -50px; bottom: -20px;
|
left: 0; right: 0; top: -50px; bottom: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.CodeMirror-ruler {
|
.CodeMirror-ruler {
|
||||||
|
@ -236,7 +237,8 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
|
||||||
cursor: text;
|
cursor: text;
|
||||||
min-height: 1px; /* prevents collapsing before first draw */
|
min-height: 1px; /* prevents collapsing before first draw */
|
||||||
}
|
}
|
||||||
.CodeMirror pre {
|
.CodeMirror pre.CodeMirror-line,
|
||||||
|
.CodeMirror pre.CodeMirror-line-like {
|
||||||
/* Reset some styles that the rest of the page might have set */
|
/* Reset some styles that the rest of the page might have set */
|
||||||
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
|
@ -255,7 +257,8 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
|
||||||
-webkit-font-variant-ligatures: contextual;
|
-webkit-font-variant-ligatures: contextual;
|
||||||
font-variant-ligatures: contextual;
|
font-variant-ligatures: contextual;
|
||||||
}
|
}
|
||||||
.CodeMirror-wrap pre {
|
.CodeMirror-wrap pre.CodeMirror-line,
|
||||||
|
.CodeMirror-wrap pre.CodeMirror-line-like {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue