mirror of
https://github.com/appy-one/acebase.git
synced 2026-05-25 22:01:21 -06:00
84 lines
No EOL
2.5 KiB
Bash
84 lines
No EOL
2.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Create CommonJS package.json
|
|
cat >dist/cjs/package.json <<JSON
|
|
{
|
|
"type": "commonjs",
|
|
"types": "../types/index.d.ts",
|
|
"browser": {
|
|
"./index.js": "./browser.js",
|
|
"./ipc/index.js": "./ipc/browser.js",
|
|
"./promise-fs/index.js": "./promise-fs/browser.js",
|
|
"./storage/binary/index.js": "./storage/binary/browser.js",
|
|
"./storage/mssql/index.js": "./storage/mssql/browser.js",
|
|
"./storage/sqlite/index.js": "./storage/sqlite/browser.js",
|
|
"./data-index/index.js": "./data-index/browser.js",
|
|
"./btree/index.js": "./btree/browser.js"
|
|
}
|
|
}
|
|
JSON
|
|
|
|
# Write typings to support Node16 module resolution
|
|
cat >dist/cjs/index.d.ts <<TYPESCRIPT
|
|
export * from '../types/index.js';
|
|
TYPESCRIPT
|
|
|
|
# Create ESM package.json
|
|
cat >dist/esm/package.json <<JSON
|
|
{
|
|
"type": "module",
|
|
"types": "../types/index.d.ts",
|
|
"browser": {
|
|
"./index.js": "./browser.js",
|
|
"./ipc/index.js": "./ipc/browser.js",
|
|
"./promise-fs/index.js": "./promise-fs/browser.js",
|
|
"./storage/binary/index.js": "./storage/binary/browser.js",
|
|
"./storage/mssql/index.js": "./storage/mssql/browser.js",
|
|
"./storage/sqlite/index.js": "./storage/sqlite/browser.js",
|
|
"./data-index/index.js": "./data-index/browser.js",
|
|
"./btree/index.js": "./btree/browser.js"
|
|
}
|
|
}
|
|
JSON
|
|
|
|
# Write typings to support Node16 module resolution
|
|
cat >dist/esm/index.d.ts <<TYPESCRIPT
|
|
export * from '../types/index.js';
|
|
TYPESCRIPT
|
|
|
|
# Write example file for runkit
|
|
cat >dist/runkit.js <<JAVASCRIPT
|
|
const { AceBase } = require('acebase');
|
|
|
|
// Open or create database:
|
|
const db = new AceBase('mydb', { logLevel: 'error' });
|
|
|
|
// Set data at "runkit/test"
|
|
await db.ref('runkit/test').set({
|
|
text: 'This is a test',
|
|
created: new Date(),
|
|
});
|
|
|
|
// Update "text" child of "runkit/test", create "modified" child
|
|
await db.ref('runkit/test').update({
|
|
text: 'Updated text with a parent node update',
|
|
modified: new Date(),
|
|
});
|
|
|
|
// Overwrite "runkit/test/text"
|
|
await db.ref('runkit/test/text').set('Updated text by setting it');
|
|
|
|
// Get all data stored at "runkit/test"
|
|
const snapshot = await db.ref('runkit/test').get();
|
|
console.log('Value stored at "runkit/test":');
|
|
console.log(snapshot.val());
|
|
|
|
// Transactional update on "runkit/test/counter"
|
|
await db.ref('runkit/test/counter').transaction(snapshot => {
|
|
const val = snapshot.exists() ? snapshot.val() : 0;
|
|
return val + 1; // new value for "counter" property
|
|
});
|
|
|
|
// Remove "runkit"
|
|
await db.ref('runkit').remove();
|
|
JAVASCRIPT |