@esydoc/resolver-demo
Advanced tools
Comparing version 2.0.7-beta.15 to 2.0.7-beta.16
@@ -18,3 +18,3 @@ /*! | ||
/****************************************************************************** | ||
/*! ***************************************************************************** | ||
Copyright (c) Microsoft Corporation. | ||
@@ -38,3 +38,3 @@ | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
@@ -44,4 +44,2 @@ }; | ||
function __extends(d, b) { | ||
if (typeof b !== "function" && b !== null) | ||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); | ||
extendStatics(d, b); | ||
@@ -140,3 +138,3 @@ function __() { this.constructor = d; } | ||
if (match) { | ||
match[0]; var value = match[1], label = match[2]; | ||
var matchStr = match[0], value = match[1], label = match[2]; | ||
var processedValue = /^[0-9]+$/.test(value.trim()) | ||
@@ -367,3 +365,3 @@ ? Number(value) | ||
var templateMap = { | ||
'hyext-demo-miniapp': path__default["default"].resolve(__dirname, '../templates/demo-miniapp') | ||
'hyext-demo-miniapp': path__default['default'].resolve(__dirname, '../templates/demo-miniapp') | ||
}; | ||
@@ -418,3 +416,3 @@ var DemoCodeResolver = /** @class */ (function (_super) { | ||
beautifulCode = helper.perttyCode(code); | ||
return [4 /*yield*/, helper.addFile(path__default["default"].join(templateMap["hyext-demo-miniapp"], 'demo-config.js'), beautifulCode)]; | ||
return [4 /*yield*/, helper.addFile(path__default['default'].join(templateMap["hyext-demo-miniapp"], 'demo-config.js'), beautifulCode)]; | ||
case 2: | ||
@@ -421,0 +419,0 @@ _a.sent(); |
{ | ||
"name": "@esydoc/resolver-demo", | ||
"version": "2.0.7-beta.15", | ||
"version": "2.0.7-beta.16", | ||
"description": "> TODO: description", | ||
@@ -22,5 +22,5 @@ "author": "Alex <857276958@qq.com>", | ||
"dependencies": { | ||
"@esydoc/doclet-parser": "^2.0.7-beta.15", | ||
"@esydoc/path-filter": "^2.0.7-beta.15", | ||
"@esydoc/share": "^2.0.7-beta.15", | ||
"@esydoc/doclet-parser": "^2.0.7-beta.16", | ||
"@esydoc/path-filter": "^2.0.7-beta.16", | ||
"@esydoc/share": "^2.0.7-beta.16", | ||
"chalk": "^4.1.0", | ||
@@ -32,3 +32,3 @@ "fs-extra": "^9.0.1", | ||
"devDependencies": { | ||
"@esydoc/plugin-codegen": "^2.0.7-beta.15" | ||
"@esydoc/plugin-codegen": "^2.0.7-beta.16" | ||
}, | ||
@@ -38,3 +38,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "4ff8f864d5049a7efa0f0cf6881359ad2cc19b84" | ||
"gitHead": "8066de0a348bd5ae23db0751f495d42930df6be0" | ||
} |
866131
23336