Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sstraatemans committed Jan 11, 2024
1 parent 0c8d242 commit e5f7a0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build:scripts": "tsx ./src/scripts/build.ts",
"build:storybook": "pnpm run build:scripts && storybook build",
"chromatic": "chromatic -b build:storybook",
"dev": "NODE_ENV=development pnpm run build:scripts && concurrently \"next dev\" \"pnpm run dev:docswatch\"",
"dev": "NODE_OPTIONS=--max-old-space-size=8192 NODE_ENV=development pnpm run build:scripts && concurrently \"next dev\" \"pnpm run dev:docswatch\"",
"dev:docswatch": "NODE_ENV=development IGNOREREPO=true tsx ./src/scripts/watchdocs.ts",
"format": "pnpm run --sequential /^format:.*/",
"format:lint": "pnpm run lint:src --fix",
Expand Down
4 changes: 2 additions & 2 deletions packages/apps/docs/src/scripts/movePages/singlePage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { IConfigTreeItem, IScriptResult } from '@kadena/docs-tools';
import { IConfigMenu, getParentTreeFromPage } from '@kadena/docs-tools';
import type { IScriptResult } from '@kadena/docs-tools';
import { getParentTreeFromPage } from '@kadena/docs-tools';
import { copyPage } from '.';
import { getPageFromPath } from '../fixLocalLinks/utils/getPageFromPath';

Expand Down
4 changes: 2 additions & 2 deletions packages/apps/docs/src/scripts/watchdocs.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import chokidar from 'chokidar';
import { fixLocalLinks } from './fixLocalLinks';
import { createDocsTree } from './getdocstree';
import type { IEventType } from './movePages/singlepage';
import { moveSinglePage } from './movePages/singlepage';
import type { IEventType } from './movePages/singlePage';
import { moveSinglePage } from './movePages/singlePage';
import { initFunc } from './utils/build';

const run = async (event: IEventType, path: string): Promise<void> => {
Expand Down

0 comments on commit e5f7a0a

Please sign in to comment.