refactor: update dependencies

This commit is contained in:
Rainer Killinger
2022-04-04 20:42:01 +02:00
parent cecf95aa46
commit a638f5447b
4 changed files with 318 additions and 296 deletions

592
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -45,16 +45,16 @@
"Wieland Schöbl" "Wieland Schöbl"
], ],
"dependencies": { "dependencies": {
"@openstapps/core-tools": "0.29.0", "@openstapps/core-tools": "0.30.0",
"@types/geojson": "1.0.6", "@types/geojson": "1.0.6",
"@types/json-patch": "0.0.30", "@types/json-patch": "0.0.30",
"@types/json-schema": "7.0.10", "@types/json-schema": "7.0.11",
"@types/node": "14.18.3", "@types/node": "14.18.3",
"fast-clone": "1.5.13",
"fast-deep-equal": "3.1.3", "fast-deep-equal": "3.1.3",
"http-status-codes": "2.2.0", "http-status-codes": "2.2.0",
"json-patch": "0.7.0", "json-patch": "0.7.0",
"json-schema": "0.4.0", "json-schema": "0.4.0",
"rfdc": "1.3.0",
"ts-optchain": "0.1.8" "ts-optchain": "0.1.8"
}, },
"devDependencies": { "devDependencies": {
@@ -63,7 +63,7 @@
"@openstapps/logger": "0.8.0", "@openstapps/logger": "0.8.0",
"@testdeck/mocha": "0.2.0", "@testdeck/mocha": "0.2.0",
"@types/chai": "4.3.0", "@types/chai": "4.3.0",
"@types/lodash": "4.14.180", "@types/lodash": "4.14.181",
"@types/mocha": "9.1.0", "@types/mocha": "9.1.0",
"@types/rimraf": "3.0.2", "@types/rimraf": "3.0.2",
"chai": "4.3.6", "chai": "4.3.6",
@@ -77,7 +77,7 @@
"surge": "0.23.1", "surge": "0.23.1",
"ts-node": "10.7.0", "ts-node": "10.7.0",
"tslint": "6.1.3", "tslint": "6.1.3",
"typedoc": "0.21.6", "typedoc": "0.22.13",
"typescript": "4.3.5" "typescript": "4.3.5"
}, },
"nyc": { "nyc": {

View File

@@ -12,8 +12,8 @@
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>. * this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import clone = require('fast-clone');
import equal = require('fast-deep-equal/es6'); import equal = require('fast-deep-equal/es6');
import clone = require('rfdc');
import {Defined, TSOCType} from 'ts-optchain'; import {Defined, TSOCType} from 'ts-optchain';
import {SCLanguageCode} from './general/i18n'; import {SCLanguageCode} from './general/i18n';
import {isThing} from './guards'; import {isThing} from './guards';
@@ -234,7 +234,7 @@ export class SCThingTranslator {
return cachedInstance as T; return cachedInstance as T;
} }
} }
const translatedInstance = this.translateThingInPlaceDestructively(clone(thing)); const translatedInstance = this.translateThingInPlaceDestructively(clone()(thing));
delete translatedInstance.translations; delete translatedInstance.translations;
this.cache.putObject(translatedInstance); this.cache.putObject(translatedInstance);
this.sourceCache.putObject(thing); this.sourceCache.putObject(thing);
@@ -267,7 +267,7 @@ export class SCThingTranslator {
return this.deeptranslate((objTranslatedFromCache as any)[key]); return this.deeptranslate((objTranslatedFromCache as any)[key]);
} }
} }
const objTranslated = this.translateThingInPlaceDestructively(clone(obj)); const objTranslated = this.translateThingInPlaceDestructively(clone()(obj));
this.cache.putObject(objTranslated); this.cache.putObject(objTranslated);
this.sourceCache.putObject(thing); this.sourceCache.putObject(thing);

View File

@@ -13,7 +13,7 @@
* this program. If not, see <https://www.gnu.org/licenses/>. * this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import {expect} from 'chai'; import {expect} from 'chai';
import clone = require('fast-clone'); import clone from 'rfdc';
import {slow, suite, test, timeout} from '@testdeck/mocha'; import {slow, suite, test, timeout} from '@testdeck/mocha';
import {SCThingOriginType, SCThingType, SCThingRemoteOrigin} from '../src/things/abstract/thing'; import {SCThingOriginType, SCThingType, SCThingRemoteOrigin} from '../src/things/abstract/thing';
import {SCBuildingWithoutReferences} from '../src/things/building'; import {SCBuildingWithoutReferences} from '../src/things/building';
@@ -264,7 +264,7 @@ export class TranslationSpecInplace {
@test @test
public reaccessWithChangedSourceOmitsLRUCache() { public reaccessWithChangedSourceOmitsLRUCache() {
const translatorDE = new SCThingTranslator('de'); const translatorDE = new SCThingTranslator('de');
const dishCopy = clone(dish); const dishCopy = clone()(dish);
const translatedDish = translatorDE.translatedAccess(dish); const translatedDish = translatorDE.translatedAccess(dish);
const distructivelyTranslatedDish = translatorDE.translate(dish); const distructivelyTranslatedDish = translatorDE.translate(dish);
@@ -330,7 +330,7 @@ export class MetaTranslationSpec {
@test @test
public thingWithoutMetaClass() { public thingWithoutMetaClass() {
const dishCopy = clone(dish); const dishCopy = clone()(dish);
const typeNonExistant = eval("(x) => x + 'typeNonExistant';"); const typeNonExistant = eval("(x) => x + 'typeNonExistant';");
// this will assign a non existant SCThingType to dishCopy // this will assign a non existant SCThingType to dishCopy
dishCopy.type = typeNonExistant(); dishCopy.type = typeNonExistant();