Skip to content

Commit

Permalink
fix unable to link packages due to file ending
Browse files Browse the repository at this point in the history
  • Loading branch information
joewagner committed Jun 6, 2024
1 parent 4a64f83 commit 321a6b5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-cli",
"version": "0.1.0",
"version": "0.1.1",
"description": "Tableland command line tools",
"repository": "https://github.com/tablelandnetwork/studio/cli",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/store/src/custom-types/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { type Schema as SDKSchema } from "@tableland/sdk";
import { customType } from "drizzle-orm/sqlite-core";
import { unescapeSchema } from "../helpers";
import { unescapeSchema } from "../helpers.js";

export type Schema = SDKSchema;

Expand Down
2 changes: 1 addition & 1 deletion packages/validators/src/common.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { z } from "zod";
import { helpers } from "@tableland/sdk";
import { slugify } from "@tableland/studio-store";
import { restrictedTeamSlugs, restrictedDefSlugs } from "./restricted-slugs";
import { restrictedTeamSlugs, restrictedDefSlugs } from "./restricted-slugs.js";

export const teamNameSchema = z
.string()
Expand Down
2 changes: 1 addition & 1 deletion packages/validators/src/validators/defs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { z } from "zod";
import { type Schema } from "@tableland/studio-store";
import { defNameSchema } from "../common";
import { defNameSchema } from "../common.js";

const defDescriptionSchema = z.string().trim().min(1).max(1024);

Expand Down

0 comments on commit 321a6b5

Please sign in to comment.