@imedx/ics-imedx-chromely-plugin-intf-platform
Advanced tools
Comparing version 0.0.2 to 0.0.3
import icsChromelyRequest from '@icreate/ics-chromely-js-sdk'; | ||
/****************************************************************************** | ||
Copyright (c) Microsoft Corporation. | ||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THIS SOFTWARE. | ||
***************************************************************************** */ | ||
var __assign = function() { | ||
__assign = Object.assign || function __assign(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
/** | ||
@@ -114,9 +140,28 @@ * 接口响应 | ||
IntfPlatform.GetInterfaceType = function (intfCode) { | ||
return InterfaceType.DLL; | ||
return IntfPlatform.coreInterfaces[intfCode] ? InterfaceType.JS : InterfaceType.DLL; | ||
}; | ||
/** | ||
* 验证授权 | ||
* @param intfCode 接口编码 | ||
* @returns Promise | ||
*/ | ||
IntfPlatform.authorization = function (intfCode) { | ||
// return this.hbbasic.api.authorization( | ||
// { | ||
// orgId: this.orgId, | ||
// apiId: intfCode | ||
// }, | ||
// true | ||
// ) | ||
return Promise.resolve(); | ||
}; | ||
/** | ||
* | ||
* @param orgId 机构编号 | ||
* @param hbBasicClient hbBasic接口 | ||
* @returns 成功:{code: 200, data, message: 'ok'} | ||
*/ | ||
IntfPlatform.init = function () { | ||
IntfPlatform.init = function (orgId, hbBasicClient) { | ||
this.orgId = orgId; | ||
this.hbbasic = hbBasicClient; | ||
return this.OperateEx('Init'); | ||
@@ -139,16 +184,68 @@ }; | ||
IntfPlatform.bussiness = function (intfCode, code, param) { | ||
var mode = this.GetInterfaceType(intfCode); | ||
switch (mode) { | ||
case InterfaceType.JS: | ||
// 获取核心接口 | ||
var intfCoreInstance = IntfPlatform.getCoreInterface(intfCode); | ||
// 判断核心接口是否存在 | ||
if (!intfCoreInstance) { | ||
return Promise.reject("\u6838\u5FC3\u63A5\u53E3".concat(intfCode, "\u4E0D\u5B58\u5728\uFF01")); | ||
} | ||
// 返回接口结果 | ||
return Promise.resolve(intfCoreInstance.business(code, param)); | ||
default: | ||
return this.OperateEx('Business', { intfCode: intfCode, code: code, param: JSON.stringify(param) }); | ||
var _this = this; | ||
// 校验接口是否有权限 | ||
var mode = IntfPlatform.GetInterfaceType(intfCode); | ||
// switch (mode) { | ||
// case InterfaceType.JS: | ||
var chain = [ | ||
{ | ||
resolved: function (config) { | ||
return IntfPlatform.authorization(intfCode); | ||
}, | ||
rejected: undefined | ||
} | ||
]; | ||
if (mode === InterfaceType.JS) { | ||
chain.push({ | ||
resolved: function (config) { | ||
// 获取核心接口 | ||
var intfCoreInstance = IntfPlatform.getCoreInterface(intfCode); | ||
// 判断核心接口是否存在 | ||
if (!intfCoreInstance) { | ||
return Promise.reject({ | ||
code: 404, | ||
message: "\u6838\u5FC3\u63A5\u53E3".concat(intfCode, "\u4E0D\u5B58\u5728\uFF01"), | ||
data: null | ||
}); | ||
} | ||
else { | ||
try { | ||
return intfCoreInstance.business(code, param); | ||
} | ||
catch (error) { | ||
var message = error.message; | ||
return Promise.reject({ | ||
code: 404, | ||
message: message || error, | ||
data: null | ||
}); | ||
} | ||
} | ||
}, | ||
rejected: undefined | ||
}); | ||
} | ||
else { | ||
chain.push({ | ||
resolved: function (config) { | ||
return _this.OperateEx('Business', { intfCode: intfCode, code: code, param: JSON.stringify(param) }); | ||
}, | ||
rejected: undefined | ||
}); | ||
} | ||
// icsChromelyRequest.interceptors.response.interceptors.forEach(interceptor => { | ||
// if (interceptor !== null) { | ||
// chain.push(interceptor) | ||
// } | ||
// }) | ||
var promise = Promise.resolve(__assign({}, this)); | ||
while (chain.length) { | ||
var _a = chain.shift(), resolved = _a.resolved, rejected = _a.rejected; | ||
promise = promise.then(resolved, rejected); | ||
} | ||
// 返回接口结果 | ||
return promise; | ||
// default: | ||
// return this.OperateEx('Business', { intfCode, code, param: JSON.stringify(param) }) | ||
// } | ||
}; | ||
@@ -155,0 +252,0 @@ /** |
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@icreate/ics-chromely-js-sdk')) : | ||
typeof define === 'function' && define.amd ? define(['exports', '@icreate/ics-chromely-js-sdk'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.icsImedxChromelyPluginIntfPlatform = {}, global.icsChromelyRequest)); | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.IcsImedxChromelyPluginIntfPlatform = {}, global.IcsChromelyRequest)); | ||
})(this, (function (exports, icsChromelyRequest) { 'use strict'; | ||
/****************************************************************************** | ||
Copyright (c) Microsoft Corporation. | ||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THIS SOFTWARE. | ||
***************************************************************************** */ | ||
var __assign = function() { | ||
__assign = Object.assign || function __assign(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
/** | ||
@@ -118,9 +144,28 @@ * 接口响应 | ||
IntfPlatform.GetInterfaceType = function (intfCode) { | ||
return exports.InterfaceType.DLL; | ||
return IntfPlatform.coreInterfaces[intfCode] ? exports.InterfaceType.JS : exports.InterfaceType.DLL; | ||
}; | ||
/** | ||
* 验证授权 | ||
* @param intfCode 接口编码 | ||
* @returns Promise | ||
*/ | ||
IntfPlatform.authorization = function (intfCode) { | ||
// return this.hbbasic.api.authorization( | ||
// { | ||
// orgId: this.orgId, | ||
// apiId: intfCode | ||
// }, | ||
// true | ||
// ) | ||
return Promise.resolve(); | ||
}; | ||
/** | ||
* | ||
* @param orgId 机构编号 | ||
* @param hbBasicClient hbBasic接口 | ||
* @returns 成功:{code: 200, data, message: 'ok'} | ||
*/ | ||
IntfPlatform.init = function () { | ||
IntfPlatform.init = function (orgId, hbBasicClient) { | ||
this.orgId = orgId; | ||
this.hbbasic = hbBasicClient; | ||
return this.OperateEx('Init'); | ||
@@ -143,16 +188,68 @@ }; | ||
IntfPlatform.bussiness = function (intfCode, code, param) { | ||
var mode = this.GetInterfaceType(intfCode); | ||
switch (mode) { | ||
case exports.InterfaceType.JS: | ||
// 获取核心接口 | ||
var intfCoreInstance = IntfPlatform.getCoreInterface(intfCode); | ||
// 判断核心接口是否存在 | ||
if (!intfCoreInstance) { | ||
return Promise.reject("\u6838\u5FC3\u63A5\u53E3".concat(intfCode, "\u4E0D\u5B58\u5728\uFF01")); | ||
} | ||
// 返回接口结果 | ||
return Promise.resolve(intfCoreInstance.business(code, param)); | ||
default: | ||
return this.OperateEx('Business', { intfCode: intfCode, code: code, param: JSON.stringify(param) }); | ||
var _this = this; | ||
// 校验接口是否有权限 | ||
var mode = IntfPlatform.GetInterfaceType(intfCode); | ||
// switch (mode) { | ||
// case InterfaceType.JS: | ||
var chain = [ | ||
{ | ||
resolved: function (config) { | ||
return IntfPlatform.authorization(intfCode); | ||
}, | ||
rejected: undefined | ||
} | ||
]; | ||
if (mode === exports.InterfaceType.JS) { | ||
chain.push({ | ||
resolved: function (config) { | ||
// 获取核心接口 | ||
var intfCoreInstance = IntfPlatform.getCoreInterface(intfCode); | ||
// 判断核心接口是否存在 | ||
if (!intfCoreInstance) { | ||
return Promise.reject({ | ||
code: 404, | ||
message: "\u6838\u5FC3\u63A5\u53E3".concat(intfCode, "\u4E0D\u5B58\u5728\uFF01"), | ||
data: null | ||
}); | ||
} | ||
else { | ||
try { | ||
return intfCoreInstance.business(code, param); | ||
} | ||
catch (error) { | ||
var message = error.message; | ||
return Promise.reject({ | ||
code: 404, | ||
message: message || error, | ||
data: null | ||
}); | ||
} | ||
} | ||
}, | ||
rejected: undefined | ||
}); | ||
} | ||
else { | ||
chain.push({ | ||
resolved: function (config) { | ||
return _this.OperateEx('Business', { intfCode: intfCode, code: code, param: JSON.stringify(param) }); | ||
}, | ||
rejected: undefined | ||
}); | ||
} | ||
// icsChromelyRequest.interceptors.response.interceptors.forEach(interceptor => { | ||
// if (interceptor !== null) { | ||
// chain.push(interceptor) | ||
// } | ||
// }) | ||
var promise = Promise.resolve(__assign({}, this)); | ||
while (chain.length) { | ||
var _a = chain.shift(), resolved = _a.resolved, rejected = _a.rejected; | ||
promise = promise.then(resolved, rejected); | ||
} | ||
// 返回接口结果 | ||
return promise; | ||
// default: | ||
// return this.OperateEx('Business', { intfCode, code, param: JSON.stringify(param) }) | ||
// } | ||
}; | ||
@@ -159,0 +256,0 @@ /** |
"use strict"; | ||
var __assign = (this && this.__assign) || function () { | ||
__assign = Object.assign || function(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||
t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -26,9 +37,28 @@ var ics_chromely_js_sdk_1 = require("@icreate/ics-chromely-js-sdk"); | ||
IntfPlatform.GetInterfaceType = function (intfCode) { | ||
return InterfaceCore_1.InterfaceType.DLL; | ||
return IntfPlatform.coreInterfaces[intfCode] ? InterfaceCore_1.InterfaceType.JS : InterfaceCore_1.InterfaceType.DLL; | ||
}; | ||
/** | ||
* 验证授权 | ||
* @param intfCode 接口编码 | ||
* @returns Promise | ||
*/ | ||
IntfPlatform.authorization = function (intfCode) { | ||
// return this.hbbasic.api.authorization( | ||
// { | ||
// orgId: this.orgId, | ||
// apiId: intfCode | ||
// }, | ||
// true | ||
// ) | ||
return Promise.resolve(); | ||
}; | ||
/** | ||
* | ||
* @param orgId 机构编号 | ||
* @param hbBasicClient hbBasic接口 | ||
* @returns 成功:{code: 200, data, message: 'ok'} | ||
*/ | ||
IntfPlatform.init = function () { | ||
IntfPlatform.init = function (orgId, hbBasicClient) { | ||
this.orgId = orgId; | ||
this.hbbasic = hbBasicClient; | ||
return this.OperateEx('Init'); | ||
@@ -51,16 +81,68 @@ }; | ||
IntfPlatform.bussiness = function (intfCode, code, param) { | ||
var mode = this.GetInterfaceType(intfCode); | ||
switch (mode) { | ||
case InterfaceCore_1.InterfaceType.JS: | ||
// 获取核心接口 | ||
var intfCoreInstance = IntfPlatform.getCoreInterface(intfCode); | ||
// 判断核心接口是否存在 | ||
if (!intfCoreInstance) { | ||
return Promise.reject("\u6838\u5FC3\u63A5\u53E3".concat(intfCode, "\u4E0D\u5B58\u5728\uFF01")); | ||
} | ||
// 返回接口结果 | ||
return Promise.resolve(intfCoreInstance.business(code, param)); | ||
default: | ||
return this.OperateEx('Business', { intfCode: intfCode, code: code, param: JSON.stringify(param) }); | ||
var _this = this; | ||
// 校验接口是否有权限 | ||
var mode = IntfPlatform.GetInterfaceType(intfCode); | ||
// switch (mode) { | ||
// case InterfaceType.JS: | ||
var chain = [ | ||
{ | ||
resolved: function (config) { | ||
return IntfPlatform.authorization(intfCode); | ||
}, | ||
rejected: undefined | ||
} | ||
]; | ||
if (mode === InterfaceCore_1.InterfaceType.JS) { | ||
chain.push({ | ||
resolved: function (config) { | ||
// 获取核心接口 | ||
var intfCoreInstance = IntfPlatform.getCoreInterface(intfCode); | ||
// 判断核心接口是否存在 | ||
if (!intfCoreInstance) { | ||
return Promise.reject({ | ||
code: 404, | ||
message: "\u6838\u5FC3\u63A5\u53E3".concat(intfCode, "\u4E0D\u5B58\u5728\uFF01"), | ||
data: null | ||
}); | ||
} | ||
else { | ||
try { | ||
return intfCoreInstance.business(code, param); | ||
} | ||
catch (error) { | ||
var message = error.message; | ||
return Promise.reject({ | ||
code: 404, | ||
message: message || error, | ||
data: null | ||
}); | ||
} | ||
} | ||
}, | ||
rejected: undefined | ||
}); | ||
} | ||
else { | ||
chain.push({ | ||
resolved: function (config) { | ||
return _this.OperateEx('Business', { intfCode: intfCode, code: code, param: JSON.stringify(param) }); | ||
}, | ||
rejected: undefined | ||
}); | ||
} | ||
// icsChromelyRequest.interceptors.response.interceptors.forEach(interceptor => { | ||
// if (interceptor !== null) { | ||
// chain.push(interceptor) | ||
// } | ||
// }) | ||
var promise = Promise.resolve(__assign({}, this)); | ||
while (chain.length) { | ||
var _a = chain.shift(), resolved = _a.resolved, rejected = _a.rejected; | ||
promise = promise.then(resolved, rejected); | ||
} | ||
// 返回接口结果 | ||
return promise; | ||
// default: | ||
// return this.OperateEx('Business', { intfCode, code, param: JSON.stringify(param) }) | ||
// } | ||
}; | ||
@@ -67,0 +149,0 @@ /** |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
business(code: string, param: any): IntfResponse; | ||
business(code: string, param: any): Promise<IntfResponse>; | ||
} | ||
@@ -32,3 +32,3 @@ /** | ||
*/ | ||
abstract business(code: string, param: any): IntfResponse; | ||
abstract business(code: string, param: any): Promise<IntfResponse>; | ||
/** | ||
@@ -35,0 +35,0 @@ * 200成功返回 |
@@ -0,4 +1,13 @@ | ||
import HBBasicClient from '@icreate/hb-basic-js-sdk'; | ||
import { ConfigRecord, IInterfaceCore } from './interfaces/InterfaceCore'; | ||
export default class IntfPlatform { | ||
/** | ||
* 机构ID | ||
*/ | ||
private static orgId; | ||
/** | ||
* hbbasic接口 | ||
*/ | ||
private static hbbasic; | ||
/** | ||
* 实现接口列表 | ||
@@ -32,6 +41,14 @@ */ | ||
/** | ||
* 验证授权 | ||
* @param intfCode 接口编码 | ||
* @returns Promise | ||
*/ | ||
static authorization(intfCode: string): Promise<any>; | ||
/** | ||
* | ||
* @param orgId 机构编号 | ||
* @param hbBasicClient hbBasic接口 | ||
* @returns 成功:{code: 200, data, message: 'ok'} | ||
*/ | ||
static init(): Promise<any>; | ||
static init(orgId: string, hbBasicClient: HBBasicClient): Promise<any>; | ||
/** | ||
@@ -38,0 +55,0 @@ * |
{ | ||
"name": "@imedx/ics-imedx-chromely-plugin-intf-platform", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "", | ||
@@ -89,2 +89,3 @@ "keywords": [], | ||
"@rollup/plugin-commonjs": "^24.1.0", | ||
"@rollup/plugin-html": "^1.0.2", | ||
"@rollup/plugin-json": "^6.0.0", | ||
@@ -109,2 +110,3 @@ "@rollup/plugin-node-resolve": "^15.0.2", | ||
"lodash.camelcase": "^4.3.0", | ||
"lodash.upperfirst": "^4.3.1", | ||
"package-tls": "^1.2.2", | ||
@@ -131,9 +133,6 @@ "path": "^0.12.7", | ||
"dependencies": { | ||
"@icreate/ics-chromely-js-sdk": "^0.0.4-beta.1", | ||
"@imedx/ics-imedx-chromely-plugin-intf-platform": "^0.0.1-beta.13", | ||
"@rollup/plugin-html": "^1.0.2", | ||
"rollup-plugin-livereload": "^2.0.5", | ||
"rollup-plugin-sass": "^1.12.19", | ||
"rollup-plugin-serve": "^2.0.2" | ||
"@icreate/hb-basic-js-sdk": "^0.0.17-beta.19", | ||
"@icreate/ics-chromely-js-sdk": "^0.0.7-beat.7", | ||
"@icreate/ics-chromely-plugin-core": "^0.0.20-beta.11" | ||
} | ||
} |
@@ -0,0 +0,0 @@ ### 引入 |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
99400
3
1238
0
43
17
+ Added@icreate/core@0.0.15(transitive)
+ Added@icreate/hb-basic-js-sdk@0.0.17(transitive)
+ Added@icreate/ics-chromely-js-sdk@0.0.7(transitive)
+ Added@icreate/ics-chromely-plugin-core@0.0.20(transitive)
+ Addedaxios@0.26.1(transitive)
+ Addedfollow-redirects@1.15.9(transitive)
+ Addedjs-base64@3.7.7(transitive)
+ Addedjsbn@1.1.0(transitive)
+ Addedsm-crypto@0.3.13(transitive)
- Removed@imedx/ics-imedx-chromely-plugin-intf-platform@^0.0.1-beta.13
- Removed@rollup/plugin-html@^1.0.2
- Removedrollup-plugin-livereload@^2.0.5
- Removedrollup-plugin-sass@^1.12.19
- Removedrollup-plugin-serve@^2.0.2
- Removed@icreate/ics-chromely-js-sdk@0.0.4(transitive)
- Removed@imedx/ics-imedx-chromely-plugin-intf-platform@0.0.1(transitive)
- Removed@parcel/watcher@2.5.0(transitive)
- Removed@parcel/watcher-android-arm64@2.5.0(transitive)
- Removed@parcel/watcher-darwin-arm64@2.5.0(transitive)
- Removed@parcel/watcher-darwin-x64@2.5.0(transitive)
- Removed@parcel/watcher-freebsd-x64@2.5.0(transitive)
- Removed@parcel/watcher-linux-arm-glibc@2.5.0(transitive)
- Removed@parcel/watcher-linux-arm-musl@2.5.0(transitive)
- Removed@parcel/watcher-linux-arm64-glibc@2.5.0(transitive)
- Removed@parcel/watcher-linux-arm64-musl@2.5.0(transitive)
- Removed@parcel/watcher-linux-x64-glibc@2.5.0(transitive)
- Removed@parcel/watcher-linux-x64-musl@2.5.0(transitive)
- Removed@parcel/watcher-win32-arm64@2.5.0(transitive)
- Removed@parcel/watcher-win32-ia32@2.5.0(transitive)
- Removed@parcel/watcher-win32-x64@2.5.0(transitive)
- Removed@rollup/plugin-html@1.1.0(transitive)
- Removed@rollup/pluginutils@5.1.4(transitive)
- Removed@types/estree@1.0.6(transitive)
- Removedanymatch@3.1.3(transitive)
- Removedbinary-extensions@2.3.0(transitive)
- Removedbraces@3.0.3(transitive)
- Removedchokidar@3.6.04.0.3(transitive)
- Removedcross-fetch@3.2.0(transitive)
- Removeddetect-libc@1.0.3(transitive)
- Removedestree-walker@2.0.2(transitive)
- Removedfill-range@7.1.1(transitive)
- Removedfsevents@2.3.3(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedglob-parent@5.1.2(transitive)
- Removedhasown@2.0.2(transitive)
- Removedimmutable@5.0.3(transitive)
- Removedis-binary-path@2.1.0(transitive)
- Removedis-core-module@2.16.1(transitive)
- Removedis-extglob@2.1.1(transitive)
- Removedis-glob@4.0.3(transitive)
- Removedis-number@7.0.0(transitive)
- Removedlivereload@0.9.3(transitive)
- Removedlivereload-js@3.4.1(transitive)
- Removedmicromatch@4.0.8(transitive)
- Removedmime@3.0.0(transitive)
- Removednode-addon-api@7.1.1(transitive)
- Removednode-fetch@2.7.0(transitive)
- Removednormalize-path@3.0.0(transitive)
- Removedopener@1.5.2(transitive)
- Removedopts@2.0.2(transitive)
- Removedpath-parse@1.0.7(transitive)
- Removedpicomatch@2.3.14.0.2(transitive)
- Removedreaddirp@3.6.04.0.2(transitive)
- Removedresolve@1.22.10(transitive)
- Removedrollup-plugin-livereload@2.0.5(transitive)
- Removedrollup-plugin-sass@1.14.0(transitive)
- Removedrollup-plugin-serve@2.0.3(transitive)
- Removedsass@1.83.0(transitive)
- Removedsource-map-js@1.2.1(transitive)
- Removedsupports-preserve-symlinks-flag@1.0.0(transitive)
- Removedto-regex-range@5.0.1(transitive)
- Removedtr46@0.0.3(transitive)
- Removedwebidl-conversions@3.0.1(transitive)
- Removedwhatwg-url@5.0.0(transitive)
- Removedws@7.5.10(transitive)