mirror of
https://github.com/dcarrillo/atalaya.git
synced 2026-07-23 17:05:45 +00:00
feat: migrate from npm to pnpm (#24)
* feat: migrate from npm to pnpm * Update README.md
This commit is contained in:
+10
-12
@@ -3,12 +3,9 @@
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"workspaces": [
|
||||
"status-page"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "wrangler dev",
|
||||
"deploy": "npm run build --workspace=status-page && wrangler deploy",
|
||||
"deploy": "pnpm --filter=atalaya-prod-status-page run build && wrangler deploy",
|
||||
"test": "vitest",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "oxlint && eslint",
|
||||
@@ -16,14 +13,14 @@
|
||||
"lint:strict": "oxlint --deny warnings && eslint --max-warnings=0",
|
||||
"format": "prettier --write \"src/**/*.ts\"",
|
||||
"format:check": "prettier --check \"src/**/*.ts\"",
|
||||
"check": "npm run typecheck && npm run lint && npm run format:check",
|
||||
"check:fix": "npm run lint:fix && npm run format",
|
||||
"dev:pages": "npm run dev --workspace=status-page",
|
||||
"build:pages": "npm run build --workspace=status-page",
|
||||
"check:pages": "npm run typecheck --workspace=status-page && npm run lint:pages && npm run format:pages:check",
|
||||
"lint:pages": "npm run lint --workspace=status-page",
|
||||
"lint:pages:fix": "npm run lint:fix --workspace=status-page",
|
||||
"test:pages": "npm run test --workspace=status-page",
|
||||
"check": "pnpm run typecheck && pnpm run lint && pnpm run format:check",
|
||||
"check:fix": "pnpm run lint:fix && pnpm run format",
|
||||
"dev:pages": "pnpm --filter=atalaya-prod-status-page run dev",
|
||||
"build:pages": "pnpm --filter=atalaya-prod-status-page run build",
|
||||
"check:pages": "pnpm --filter=atalaya-prod-status-page run typecheck && pnpm run lint:pages && pnpm run format:pages:check",
|
||||
"lint:pages": "pnpm --filter=atalaya-prod-status-page run lint",
|
||||
"lint:pages:fix": "pnpm --filter=atalaya-prod-status-page run lint:fix",
|
||||
"test:pages": "pnpm --filter=atalaya-prod-status-page run test",
|
||||
"format:pages": "prettier --write \"src/**/*.ts\" \"status-page/src/**/*.ts\"",
|
||||
"format:pages:check": "prettier --check \"src/**/*.ts\" \"status-page/src/**/*.ts\""
|
||||
},
|
||||
@@ -34,6 +31,7 @@
|
||||
"@typescript-eslint/parser": "^8.62.1",
|
||||
"eslint": "^10.6.0",
|
||||
"eslint-plugin-oxlint": "^1.72.0",
|
||||
"oxlint": "^1.72.0",
|
||||
"prettier": "^3.9.4",
|
||||
"typescript": "^6.0.0",
|
||||
"vitest": "^4.1.9",
|
||||
|
||||
Reference in New Issue
Block a user