Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed May 6, 2024
1 parent fc6ddc0 commit 7397b14
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: 🧪 Build Healthchecks CLI
run: |
pnpm turbo compile --filter=@fern-api/healthchecks
pnpm turbo compile
pnpm --filter=@fern-api/healthchecks dist:cli
- name: Run Healthchecks
Expand Down
2 changes: 1 addition & 1 deletion packages/commons/fdr-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export * from "./buildUrl";
export * from "./definition-object-factory";
export * from "./docs";
export * from "./flattenApiDefinition";
export * from "./getAllUrlsFromDocsConfig";
export { getAllUrlsFromDocsConfig } from "./getAllUrlsFromDocsConfig";
export * from "./getNavigationRoot";
export * from "./getUnversionedSlug";
export * from "./resolver";
Expand Down
6 changes: 3 additions & 3 deletions packages/healthchecks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"fern-health": "./dist/cli.cjs"
},
"scripts": {
"clean": "rm -rf ./lib && tsc --build --clean",
"compile": "tsc --build",
"clean": "rm -rf ./dist && tsc --build --clean",
"dist:cli": "tsup ./src/cli.ts --format cjs",
"test": "vitest --passWithNoTests --globals --disable-console-intercept",
"lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../.eslintignore",
Expand All @@ -33,9 +32,10 @@
"depcheck": "depcheck"
},
"devDependencies": {
"@fern-ui/core-utils": "workspace:*",
"@fern-api/fdr-sdk": "workspace:*",
"@fern-fern/vercel": "0.0.1",
"@fern-ui/fdr-utils": "workspace:*",
"@fern-fern/vercel": "0.0.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.7.18",
"@types/yargs": "^17.0.32",
Expand Down
2 changes: 1 addition & 1 deletion packages/healthchecks/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../shared/tsconfig.shared.json",
"compilerOptions": { "composite": true, "outDir": "lib", "rootDir": "." },
"compilerOptions": { "composite": true, "outDir": "dist", "rootDir": "." },
"include": ["./src/**/*"]
}
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

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

0 comments on commit 7397b14

Please sign in to comment.