У меня есть следующее package.json
:
{
"name": "watchman",
"version": "1.0.0",
"description": "Simple watcher for ES6 to AMD conversion",
"author": "Luciad NV",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 babel es6/geometry es6/ria es6/symbology -d release --watch"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-modules-amd": "^7.2.0",
"cross-env": "^5.2.0"
},
"dependencies": {
"@babel/cli": "^7.2.3"
}
}
У меня есть следующее .babelrc
:
{
"plugins": ["@babel/plugin-transform-modules-amd"]
}
В моей папке es6/ria
есть следующий модуль es6:
import ProgrammingError from "../error/ProgrammingError";
import Promise from "../util/Promise";
function Evented(supportedEvents) {
}
Evented.prototype = Object.create(Object.prototype);
Evented.prototype.constructor = Evented;
Evented.prototype.on = function(event, callback, context, options) {
};
Evented.prototype.emit = function(event) {
};
export default Evented;
Если я запускаю npm run build
Это создает модуль AMD со следующей реализацией:
define(["exports", "../error/ProgrammingError", "../util/Promise"], function (_exports, _ProgrammingError, _Promise) {
"use strict";
Object.defineProperty(_exports, "__esModule", {
value: true
});
_exports.default = void 0;
_ProgrammingError = _interopRequireDefault(_ProgrammingError);
_Promise = _interopRequireDefault(_Promise);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function Evented(supportedEvents) {}
Evented.prototype = Object.create(Object.prototype);
Evented.prototype.constructor = Evented;
Evented.prototype.on = function (event, callback, context, options) {};
Evented.prototype.emit = function (event) {};
var _default = Evented;
_exports.default = _default;
});
Когда я пытаюсь загрузить модуль Evented
с помощью eg. Require.Js, я ожидаю Evented
«класс».
Вместо этого я получаю объект со свойством default
, которое содержит Evented
«класс».
Это ошибка? Или так устроено?
И это не ошибка, есть ли способ добиться желаемого эффекта?
Есть ли способ конвертировать ES6 в AMD с помощью плагина @ babel / plugin-transform-modules-amd, чтобы он возвращал Evented
«класс», как и ожидалось?