rotifex 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +12 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,22 +9,26 @@
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- npm install -g rotifex
12
+ npm i rotifex
13
13
  ```
14
14
 
15
- Or run directly with `npx`:
15
+ Then start the server:
16
16
 
17
17
  ```bash
18
- npx rotifex <command>
18
+ npm start
19
+ ```
20
+
21
+ Or run directly without installing:
22
+
23
+ ```bash
24
+ npx rotifex start
19
25
  ```
20
26
 
21
27
  ## Commands
22
28
 
23
- | Command | Description |
24
- | --------- | -------------------------------------------------- |
25
- | `init` | Initialize a new Rotifex project |
26
- | `start` | Start the Rotifex development server |
27
- | `migrate` | Run pending migrations |
29
+ | Command | Description |
30
+ | --------- | ------------------------------------ |
31
+ | `start` | Start the Rotifex development server |
28
32
 
29
33
  ## Table of Contents
30
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rotifex",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Rotifex — a modern CLI toolkit for project scaffolding, development, and migrations.",
5
5
  "type": "module",
6
6
  "bin": {