@bejibun/core 0.1.45 → 0.1.46

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -37,9 +37,12 @@ Options:
37
37
 
38
38
  Commands:
39
39
  db:seed Run database seeders
40
+ hello:world Run hello world
40
41
  install <packages...> Install package dependencies
41
42
  maintenance:down [options] Turn app into maintenance mode
42
43
  maintenance:up Turn app into live mode
44
+ make:migration <file> Create a new migration file
45
+ make:seeder <file> Create a new seeder file
43
46
  migrate:fresh [options] Rollback all migrations and re-run migrations
44
47
  migrate:latest Run latest migration
45
48
  migrate:rollback [options] Rollback the latest migrations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bejibun/core",
3
- "version": "0.1.45",
3
+ "version": "0.1.46",
4
4
  "author": "Havea Crenata <havea.crenata@gmail.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,11 +11,11 @@
11
11
  "dependencies": {
12
12
  "@bejibun/app": "^0.1.19",
13
13
  "@bejibun/cors": "^0.1.14",
14
- "@bejibun/database": "^0.1.11",
14
+ "@bejibun/database": "^0.1.14",
15
15
  "@bejibun/logger": "^0.1.19",
16
- "@bejibun/utils": "^0.1.16",
16
+ "@bejibun/utils": "^0.1.17",
17
17
  "@vinejs/vine": "^3.0.1",
18
- "commander": "^14.0.1",
18
+ "commander": "^14.0.2",
19
19
  "luxon": "^3.7.2",
20
20
  "objection": "^3.1.5"
21
21
  },