js: update dependency

This commit is contained in:
王劲鹏 2020-08-03 12:01:49 +08:00 committed by osborn
parent bc6f9fac9b
commit e465392d55
6 changed files with 30 additions and 24 deletions

View File

@ -21,15 +21,15 @@
"homepage": "https://github.com/penfeizhou/doric#readme",
"dependencies": {
"child_process": "^1.0.2",
"chokidar": "^3.4.0",
"commander": "^5.1.0",
"chokidar": "^3.4.1",
"commander": "^6.0.0",
"keypress": "^0.2.1",
"nodejs-websocket": "^1.7.2",
"qrcode-terminal": "^0.12.0",
"rollup": "^2.18.2",
"rollup": "^2.23.0",
"shelljs": "^0.8.4",
"source-map-merger": "^0.2.0",
"typescript": "^3.9.6"
"typescript": "^3.9.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"

View File

@ -12,15 +12,15 @@
"dependencies": {
"doric": "file:../doric-js",
"reflect-metadata": "^0.1.13",
"rollup": "^2.18.2",
"rollup": "^2.23.0",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
"typescript": "^3.9.7"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0"
"@rollup/plugin-node-resolve": "^8.4.0"
}
}

View File

@ -59,8 +59,18 @@ var doric = (function (exports) {
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
function createCommonjsModule(fn, module) {
return module = { exports: {} }, fn(module, module.exports), module.exports;
function createCommonjsModule(fn, basedir, module) {
return module = {
path: basedir,
exports: {},
require: function (path, base) {
return commonjsRequire(path, (base === undefined || base === null) ? module.path : base);
}
}, fn(module, module.exports), module.exports;
}
function commonjsRequire () {
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
}
/*! *****************************************************************************
@ -2845,10 +2855,6 @@ var doric = (function (exports) {
hiddenKeys[METADATA] = true;
});
var internalMetadata_1 = internalMetadata.REQUIRED;
var internalMetadata_2 = internalMetadata.fastKey;
var internalMetadata_3 = internalMetadata.getWeakData;
var internalMetadata_4 = internalMetadata.onFreeze;
var onFreeze = internalMetadata.onFreeze;

View File

@ -27,17 +27,17 @@
"dts-bundle": "^0.7.3",
"proxy-polyfill": "^0.3.2",
"reflect-metadata": "^0.1.13",
"rollup": "^2.18.2",
"rollup": "^2.23.0",
"tslib": "^2.0.0",
"typescript": "^3.9.6",
"ws": "^7.3.0"
"typescript": "^3.9.7",
"ws": "^7.3.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^13.0.0"
"@rollup/plugin-commonjs": "^14.0.0"
}
}

File diff suppressed because one or more lines are too long

View File

@ -19,13 +19,13 @@
},
"homepage": "https://github.com/doric-pub/doric#readme",
"dependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"axios": "^0.19.2",
"doric": "file:../doric-js",
"rollup": "^2.18.2",
"typescript": "^3.9.6"
"rollup": "^2.23.0",
"typescript": "^3.9.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"