@housekit/kit 0.1.11 → 0.1.12
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 +2 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -71,11 +71,10 @@ The standard for CI/CD and production environments.
|
|
|
71
71
|
Create a `housekit.config.ts` (or `.js`, `.mjs`) in your project root.
|
|
72
72
|
|
|
73
73
|
```typescript
|
|
74
|
-
import type { HouseKitConfig } from 'housekit';
|
|
74
|
+
import type { HouseKitConfig } from '@housekit/kit';
|
|
75
75
|
|
|
76
76
|
export default {
|
|
77
|
-
//
|
|
78
|
-
schema: './src/schema',
|
|
77
|
+
schema: './src/schema', // Where your table definitions live
|
|
79
78
|
|
|
80
79
|
// Where migrations and snapshots will be stored
|
|
81
80
|
out: './housekit',
|
package/dist/index.js
CHANGED
|
@@ -8588,7 +8588,7 @@ async function initCommand() {
|
|
|
8588
8588
|
const schemaPath = await inputPrompt("Schema directory", schemaDir);
|
|
8589
8589
|
const migrationsPath = await inputPrompt("Migrations output directory", migrationsDir);
|
|
8590
8590
|
const configPath = `housekit.config.${fileType}`;
|
|
8591
|
-
const configContent = fileType === "ts" ? `import type { HouseKitConfig } from 'housekit';
|
|
8591
|
+
const configContent = fileType === "ts" ? `import type { HouseKitConfig } from '@housekit/kit';
|
|
8592
8592
|
|
|
8593
8593
|
export default {
|
|
8594
8594
|
schema: "${schemaPath}",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@housekit/kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "CLI tool for HouseKit - manage ClickHouse schemas, migrations, and database operations with type-safe workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@clickhouse/client": "^1.14.0",
|
|
51
|
-
"@housekit/orm": "^0.1.
|
|
51
|
+
"@housekit/orm": "^0.1.12",
|
|
52
52
|
"chalk": "^5.6.2",
|
|
53
53
|
"cli-table3": "^0.6.5",
|
|
54
54
|
"commander": "^12.0.0",
|