diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index 44ac9e3..4d889bf 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 cache: 'npm' - name: Install dependencies diff --git a/.gitignore b/.gitignore index f5451da..6f0b775 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ dist-ssr *.njsproj *.sln *.sw? +.qoder # diff --git a/.husky/pre-commit b/.husky/pre-commit index d0a7784..c3ec64b 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1 +1 @@ -npx lint-staged \ No newline at end of file +npx lint-staged --allow-empty \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 7355b16..127e6b3 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] + "recommendations": ["dbaeumer.vscode-eslint", "prettier.prettier-vscode"] } diff --git a/AGENTS.md b/AGENTS.md index 225d642..8cc1d22 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -17,7 +17,6 @@ And other internal packages. Such as: ```bash npm start # Start website dev server -npm run dev # Same as start npm run build # Build all packages npm run build:lib # Build page-agent library only npm run lint # ESLint with TypeScript strict rules diff --git a/package.json b/package.json index e6e6ebd..1555fa7 100644 --- a/package.json +++ b/package.json @@ -21,10 +21,9 @@ "npm": ">=10.0.0" }, "scripts": { - "dev": "npm run dev --workspace=@page-agent/website", "start": "npm run dev --workspace=@page-agent/website", "build": "npm run build --workspaces --if-present", - "build:lib": "npm run build --workspace=page-agent", + "build:lib": "npm run build:lib --workspace=page-agent", "version": "node scripts/sync-version.js", "lint": "eslint .", "prepare": "husky"