From e630aba614cf532dd985fef2199c073ae5076aac Mon Sep 17 00:00:00 2001 From: semanticdata Date: Mon, 22 Apr 2024 13:28:22 -0500 Subject: [PATCH] reorganize run scripts --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index a7f281a8b..334e90e03 100644 --- a/package.json +++ b/package.json @@ -12,16 +12,16 @@ "url": "https://github.com/jackyzha0/quartz.git" }, "scripts": { - "quartz": "./quartz/bootstrap-cli.mjs", + "start": "npx quartz build --serve", "docs": "npx quartz build --serve -d docs", - "check": "tsc --noEmit && npx prettier . --check", - "format": "npx prettier . --write", - "test": "tsx ./quartz/util/path.test.ts", - "profile": "0x -D prof ./quartz/bootstrap-cli.mjs build --concurrency=1", "update": "npx quartz update", "sync": "npx quartz sync", - "start": "npx quartz build --serve", - "build": "npx quartz build" + "build": "npx quartz build", + "quartz": "./quartz/bootstrap-cli.mjs", + "test": "tsx ./quartz/util/path.test.ts", + "profile": "0x -D prof ./quartz/bootstrap-cli.mjs build --concurrency=1", + "check": "tsc --noEmit && npx prettier . --check", + "format": "npx prettier . --write" }, "engines": { "npm": ">=9.3.1",