modscape 1.0.7 → 1.0.8
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.ja.md
CHANGED
|
@@ -113,6 +113,13 @@ modscape dev ./models
|
|
|
113
113
|
```
|
|
114
114
|
- **永続化**: レイアウトやメタデータの変更は、直接ファイルに書き戻されます(オートセーブ対応)。
|
|
115
115
|
|
|
116
|
+
### 新規モデルの作成
|
|
117
|
+
```bash
|
|
118
|
+
modscape new models/sales/customer.yaml
|
|
119
|
+
```
|
|
120
|
+
- **再帰的作成**: 指定したパスの親ディレクトリが存在しない場合、自動的に作成します。
|
|
121
|
+
- **ボイラープレート**: ドメイン、3階層ネーミング、リレーション、リネージの例が含まれた有効なYAMLファイルを生成します。
|
|
122
|
+
|
|
116
123
|
### ビルドモード (静的サイト)
|
|
117
124
|
```bash
|
|
118
125
|
modscape build ./models -o docs-site
|
package/README.md
CHANGED
|
@@ -129,6 +129,13 @@ modscape dev ./models
|
|
|
129
129
|
```
|
|
130
130
|
- **Persistence**: Layout and metadata changes are saved directly to your files (supports Auto-save).
|
|
131
131
|
|
|
132
|
+
### Create New Model
|
|
133
|
+
```bash
|
|
134
|
+
modscape new models/sales/customer.yaml
|
|
135
|
+
```
|
|
136
|
+
- **Recursive Scaffolding**: Automatically creates parent directories if they don't exist.
|
|
137
|
+
- **Boilerplate**: Generates a valid YAML model with examples of domains, tri-layer naming, relationships, and lineage.
|
|
138
|
+
|
|
132
139
|
### Build Mode (Static Site)
|
|
133
140
|
```bash
|
|
134
141
|
modscape build ./models -o docs-site
|
package/package.json
CHANGED
package/src/index.js
CHANGED