- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
782 B
JavaScript
28 lines
782 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
|
var _default = exports.default = (0, _helperPluginUtils.declare)((api, options) => {
|
|
var _api$assumption;
|
|
api.assertVersion(7);
|
|
const noNewArrows = (_api$assumption = api.assumption("noNewArrows")) != null ? _api$assumption : !options.spec;
|
|
return {
|
|
name: "transform-arrow-functions",
|
|
visitor: {
|
|
ArrowFunctionExpression(path) {
|
|
if (!path.isArrowFunctionExpression()) return;
|
|
path.arrowFunctionToExpression({
|
|
allowInsertArrow: false,
|
|
noNewArrows,
|
|
specCompliant: !noNewArrows
|
|
});
|
|
}
|
|
}
|
|
};
|
|
});
|
|
|
|
//# sourceMappingURL=index.js.map
|