@comet/site-nextjs 8.5.1-canary-20251023060846 → 8.5.1-canary-20251023061208

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/site-nextjs",
3
- "version": "8.5.1-canary-20251023060846",
3
+ "version": "8.5.1-canary-20251023061208",
4
4
  "description": "Comet Site Next.js package",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "clsx": "^2.1.1",
26
26
  "jose": "^5.10.0",
27
27
  "server-only": "^0.0.1",
28
- "@comet/site-react": "8.5.1-canary-20251023060846"
28
+ "@comet/site-react": "8.5.1-canary-20251023061208"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/jest": "^29.5.14",
@@ -50,8 +50,8 @@
50
50
  "typescript": "5.8.3",
51
51
  "vite": "^5.4.19",
52
52
  "vite-plugin-dts": "^4.5.4",
53
- "@comet/cli": "8.5.1-canary-20251023060846",
54
- "@comet/eslint-config": "8.5.1-canary-20251023060846"
53
+ "@comet/cli": "8.5.1-canary-20251023061208",
54
+ "@comet/eslint-config": "8.5.1-canary-20251023061208"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "next": "^14.2.0",
@@ -66,14 +66,14 @@
66
66
  "registry": "https://registry.npmjs.org"
67
67
  },
68
68
  "scripts": {
69
- "build": "$npm_execpath run clean && npm run generate-block-types && vite build",
69
+ "build": "pnpm run clean && pnpm run generate-block-types && vite build",
70
70
  "clean": "rimraf lib 'src/**/*.generated.ts'",
71
- "dev": "$npm_execpath run clean && $npm_execpath generate-block-types && vite build --watch",
71
+ "dev": "pnpm run clean && pnpm run generate-block-types && vite build --watch",
72
72
  "generate-block-types": "comet generate-block-types",
73
- "generate-block-types:watch": "chokidar -s \"block-meta.json\" -c \"$npm_execpath generate-block-types\"",
74
- "lint": "$npm_execpath generate-block-types && run-p lint:prettier lint:eslint lint:tsc",
73
+ "generate-block-types:watch": "chokidar -s \"block-meta.json\" -c \"pnpm run generate-block-types\"",
74
+ "lint": "pnpm run generate-block-types && run-p lint:prettier lint:eslint lint:tsc",
75
75
  "lint:eslint": "eslint --max-warnings 0 src/ **/*.json --no-warn-ignored",
76
- "lint:prettier": "npx prettier --check './**/*.{js,json,md,yml,yaml,css,scss}'",
76
+ "lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml,css,scss}'",
77
77
  "lint:tsc": "tsc --noEmit",
78
78
  "test": "jest --verbose=true --passWithNoTests",
79
79
  "test:watch": "jest --watch"