Update packages and remove the instrument step (#854)
* several updates * avoid the instrumented step in tests
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { mergeDeep } from '../common/util.js'
|
||||
import { mergeDeep } from '@svgedit/svgcanvas/common/util.js'
|
||||
|
||||
/**
|
||||
* Escapes special characters in a regular expression.
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
import './components/index.js'
|
||||
import './dialogs/index.js'
|
||||
|
||||
import { isMac } from '../common/browser.js'
|
||||
import { isMac } from '@svgedit/svgcanvas/common/browser'
|
||||
|
||||
import SvgCanvas from '@svgedit/svgcanvas'
|
||||
import ConfigObj from './ConfigObj.js'
|
||||
@@ -26,7 +26,7 @@ import TopPanel from './panels/TopPanel.js'
|
||||
import BottomPanel from './panels/BottomPanel.js'
|
||||
import LayersPanel from './panels/LayersPanel.js'
|
||||
import MainMenu from './MainMenu.js'
|
||||
import { getParentsUntil } from '../common/util.js'
|
||||
import { getParentsUntil } from '@svgedit/svgcanvas/common/util.js'
|
||||
|
||||
const { $id, $click, decode64, blankPageObjectURL } = SvgCanvas
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* globals seAlert */
|
||||
import SvgCanvas from '@svgedit/svgcanvas'
|
||||
import { isChrome } from '../common/browser.js'
|
||||
import { isChrome } from '@svgedit/svgcanvas/common/browser.js'
|
||||
|
||||
const { $id, $click, convertUnit, isValidUnit } = SvgCanvas
|
||||
const homePage = 'https://github.com/SVG-Edit/svgedit'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { findPos } from '../../../common/util.js'
|
||||
import { findPos } from '@svgedit/svgcanvas/common/util.js'
|
||||
/**
|
||||
* Whether a value is `null` or `undefined`.
|
||||
* @param {any} val
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
*/
|
||||
import SvgCanvas from '@svgedit/svgcanvas'
|
||||
import { jPickerDefaults, jPickerMethod } from './jQuery.jPicker.js'
|
||||
import { findPos } from '../../../common/util.js'
|
||||
import { findPos } from '@svgedit/svgcanvas/common/util.js'
|
||||
|
||||
/**
|
||||
* @todo JFH: This jQuery plugin was adapted to work within a Web Component.
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
/* eslint-disable max-len */
|
||||
import ColorValuePicker from './ColorValuePicker.js'
|
||||
import Slider from './Slider.js'
|
||||
import { findPos, mergeDeep } from '../../../common/util.js'
|
||||
import { findPos, mergeDeep } from '@svgedit/svgcanvas/common/util.js'
|
||||
|
||||
/**
|
||||
* @external Math
|
||||
|
||||
Reference in New Issue
Block a user