Exporting commonjs module with Object.assign instead of Object.create to improve property visibility during development
This commit is contained in:
parent
7501617e1e
commit
22f2060a1e
@ -585,11 +585,9 @@ __webpack_require__.r(__webpack_exports__);
|
||||
|
||||
|
||||
|
||||
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Object.create(_pawsqlite_mjs__WEBPACK_IMPORTED_MODULE_0__.PawSQLite, {
|
||||
Error: {
|
||||
value: _pawsqlite_error_mjs__WEBPACK_IMPORTED_MODULE_1__.PawSQLiteError
|
||||
}
|
||||
}));
|
||||
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Object.assign({
|
||||
Error: _pawsqlite_error_mjs__WEBPACK_IMPORTED_MODULE_1__.PawSQLiteError
|
||||
}, _pawsqlite_mjs__WEBPACK_IMPORTED_MODULE_0__.PawSQLite));
|
||||
})();
|
||||
|
||||
module.exports = __webpack_exports__.default;
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,8 +1,6 @@
|
||||
import { PawSQLite } from "./pawsqlite.mjs";
|
||||
import { PawSQLiteError } from "./pawsqlite_error.mjs";
|
||||
|
||||
export default Object.create(PawSQLite, {
|
||||
Error: {
|
||||
value: PawSQLiteError
|
||||
}
|
||||
});
|
||||
export default Object.assign({
|
||||
Error: PawSQLiteError
|
||||
}, PawSQLite);
|
Loading…
Reference in New Issue
Block a user