beanbagdb 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/beanbagdb.esm.js +1 -1
- package/package.json +2 -2
- package/rollup.config.js +5 -5
package/dist/beanbagdb.esm.js
CHANGED
|
@@ -7570,7 +7570,7 @@ async function getPackageVersion() {
|
|
|
7570
7570
|
if (isNode()) {
|
|
7571
7571
|
return await getPackageVersionNode(); // Node.js environment
|
|
7572
7572
|
} else {
|
|
7573
|
-
return "0.5.
|
|
7573
|
+
return "0.5.3"; // Browser environment
|
|
7574
7574
|
}
|
|
7575
7575
|
}
|
|
7576
7576
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beanbagdb",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "A JS library to introduce a schema layer to a No-SQL local database",
|
|
5
|
-
"main": "dist/beanbagdb.
|
|
5
|
+
"main": "dist/beanbagdb.esm.js",
|
|
6
6
|
"module": "dist/beanbagdb.esm.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"scripts": {
|
package/rollup.config.js
CHANGED
|
@@ -9,11 +9,11 @@ export default [
|
|
|
9
9
|
{
|
|
10
10
|
input: 'src/index.js',
|
|
11
11
|
output: [
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
12
|
+
// {
|
|
13
|
+
// file: pkg.main, // Points to the CJS build in package.json
|
|
14
|
+
// format: 'cjs', // CommonJS format
|
|
15
|
+
// sourcemap: true,
|
|
16
|
+
// },
|
|
17
17
|
{
|
|
18
18
|
file: pkg.module, // Points to the ES module build in package.json
|
|
19
19
|
format: 'esm', // ES module format
|