Fixed webpack configuration

This commit is contained in:
Ben Ashton 2021-03-02 18:09:39 -08:00
parent 52136b1f5f
commit 7a26a96381
3 changed files with 4 additions and 4 deletions

View File

@ -402,6 +402,7 @@ __webpack_require__.r(__webpack_exports__);
const databases = new Map(); const databases = new Map();
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
name: "PawSQLiteWebSQLAdapter",
open: async (dbName) => { open: async (dbName) => {
const version = "1.0"; const version = "1.0";
@ -438,7 +439,7 @@ const databases = new Map();
})(); })();
module.exports["pawsqlite-websql-adapter"] = __webpack_exports__.default; module.exports = __webpack_exports__.default;
/******/ })() /******/ })()
; ;
//# sourceMappingURL=pawsqlite-websql-adapter.js.map //# sourceMappingURL=pawsqlite-websql-adapter.js.map

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,6 @@ var config = {
output: { output: {
path: __dirname + '/lib', path: __dirname + '/lib',
filename: outputFile, filename: outputFile,
library: libraryName,
libraryExport: 'default', libraryExport: 'default',
libraryTarget: 'commonjs2', libraryTarget: 'commonjs2',
} }