@bejibun/database 0.1.16 → 0.1.18
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/README.md
CHANGED
|
@@ -80,4 +80,6 @@ Or if you are prefer using crypto :
|
|
|
80
80
|
| EVM | Solana |
|
|
81
81
|
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
|
|
82
82
|
| <img src="https://github.com/crenata/bejibun/blob/master/public/images/EVM.png?raw=true" width="150" /> | <img src="https://github.com/crenata/bejibun/blob/master/public/images/SOL.png?raw=true" width="150" /> |
|
|
83
|
-
| 0xdABe8750061410D35cE52EB2a418c8cB004788B3 | GAnoyvy9p3QFyxikWDh9hA3fmSk2uiPLNWyQ579cckMn |
|
|
83
|
+
| 0xdABe8750061410D35cE52EB2a418c8cB004788B3 | GAnoyvy9p3QFyxikWDh9hA3fmSk2uiPLNWyQ579cckMn |
|
|
84
|
+
|
|
85
|
+
Or you can buy this `$BJBN (Bejibun)` tokens [here](https://pump.fun/coin/CQhbNnCGKfDaKXt8uE61i5DrBYJV7NPsCDD9vQgypump), beware of bots.
|
|
@@ -42,7 +42,7 @@ export default class MakeMigrationCommand {
|
|
|
42
42
|
Logger.setContext("APP").error("Whoops, something went wrong, the migration template not found.");
|
|
43
43
|
return;
|
|
44
44
|
}
|
|
45
|
-
const now = Luxon.
|
|
45
|
+
const now = Luxon.DateTime.now().toFormat("yyyyMMdd");
|
|
46
46
|
const latest = Array.from(new Bun.Glob("**/*").scanSync({
|
|
47
47
|
cwd: App.Path.databasePath(migrationsDirectory)
|
|
48
48
|
})).map((value) => {
|
|
@@ -42,7 +42,7 @@ export default class MakeSeederCommand {
|
|
|
42
42
|
Logger.setContext("APP").error("Whoops, something went wrong, the seeder template not found.");
|
|
43
43
|
return;
|
|
44
44
|
}
|
|
45
|
-
const now = Luxon.
|
|
45
|
+
const now = Luxon.DateTime.now().toFormat("yyyyMMdd");
|
|
46
46
|
const latest = Array.from(new Bun.Glob("**/*").scanSync({
|
|
47
47
|
cwd: App.Path.databasePath(seedersDirectory)
|
|
48
48
|
})).map((value) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bejibun/database",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"author": "Havea Crenata <havea.crenata@gmail.com>",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"type": "module",
|
|
38
38
|
"types": "index.d.ts",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@bejibun/app": "^0.1.
|
|
41
|
-
"@bejibun/logger": "^0.1.
|
|
42
|
-
"@bejibun/utils": "^0.1.
|
|
40
|
+
"@bejibun/app": "^0.1.20",
|
|
41
|
+
"@bejibun/logger": "^0.1.20",
|
|
42
|
+
"@bejibun/utils": "^0.1.18",
|
|
43
43
|
"knex": "^3.1.0",
|
|
44
44
|
"ora": "^9.0.0",
|
|
45
45
|
"pg": "^8.16.3"
|