Skip to content

Commit

Permalink
chore: setup itty-hydra sample
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrrt committed Nov 18, 2023
1 parent eeb1044 commit 62edf66
Show file tree
Hide file tree
Showing 18 changed files with 2,826 additions and 25 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev": "turbo run dev --filter=@playground/*",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo test --filter=@authdog/* --filter=!@playground/* --concurrency=${TURBO_CONCURRENCY:-2}"
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsc -w -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -w -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"test": "jest"
},
"keywords": [],
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/core/src/schemaUtils.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { INPUT_BLOCK_REGEXP } from "./federation/constants";
import { INPUT_BLOCK_REGEXP } from "./constants";
import {
extractTypesBlocks,
extractGenericBlockPayload,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/schemaUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
SCALAR_BLOCK_REGEX_GENERAL,
TYPE_BLOCK_REGEXP,
TYPE_BLOCK_REGEX_GENERAL,
} from "./federation/constants";
} from "./constants";

interface Field {
name: string;
Expand Down
20 changes: 0 additions & 20 deletions packages/core/tsconfig.build.json

This file was deleted.

Loading

0 comments on commit 62edf66

Please sign in to comment.