Skip to content

Commit

Permalink
build:deps, postinstall 스크립트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
CirnoV committed Dec 26, 2024
1 parent d80a281 commit 7c38111
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node-options=--max-old-space-size=6144
side-effects-cache=false
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/portone-io/developers.portone.io",
"scripts": {
"dev": "pnpm --filter @portone-io/remark-param-tree build && concurrently -k \"vinxi dev\" \"pnpm gen-collections watch\"",
"build": "pnpm gen-collections && pnpm --filter @portone-io/remark-param-tree build && vinxi build",
"dev": "pnpm build:deps && concurrently -k \"vinxi dev\" \"pnpm gen-collections watch\"",
"build": "pnpm gen-collections && pnpm build:deps && vinxi build",
"build:deps": "pnpm --filter @portone-io/remark-param-tree build",
"start": "vinxi start",
"version": "vinxi version",
"check": "pnpm lint",
"gen-collections": "tsx src/genCollections.ts",
"lint:fix": "NODE_OPTIONS=\"$NODE_OPTIONS --loader ts-node/esm\" eslint --fix .",
"lint": "NODE_OPTIONS=\"$NODE_OPTIONS --loader ts-node/esm\" eslint .",
"eslint": "NODE_OPTIONS=\"$NODE_OPTIONS --loader ts-node/esm\" eslint"
"eslint": "NODE_OPTIONS=\"$NODE_OPTIONS --loader ts-node/esm\" eslint",
"postinstall": "pnpm build:deps"
},
"imports": {
"#content": "./src/content/__generated__/index.ts",
Expand Down

0 comments on commit 7c38111

Please sign in to comment.