create-mikstack 0.1.34 → 0.1.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mikstack",
3
- "version": "0.1.34",
3
+ "version": "0.1.36",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,2 +1,6 @@
1
1
  # Generated
2
2
  *.gen.ts
3
+
4
+ # Editor
5
+ .vscode/*
6
+ !.vscode/extensions.json
@@ -15,7 +15,7 @@ describe("database schema", () => {
15
15
  });
16
16
 
17
17
  it("pushes schema without data loss", async () => {
18
- const result = await pushSchema(schema, testDb.db as Parameters<typeof pushSchema>[1]);
18
+ const result = await pushSchema(schema, testDb.db as unknown as Parameters<typeof pushSchema>[1]);
19
19
  expect(result.warnings).toEqual([]);
20
20
  expect(result.hasDataLoss).toBe(false);
21
21
  await result.apply();