@nextsparkjs/theme-blog 0.1.0-beta.31 → 0.1.0-beta.35

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/theme-blog",
3
- "version": "0.1.0-beta.31",
3
+ "version": "0.1.0-beta.35",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./config/theme.config.ts",
@@ -13,7 +13,7 @@
13
13
  "react": "^19.0.0",
14
14
  "react-dom": "^19.0.0",
15
15
  "zod": "^4.0.0",
16
- "@nextsparkjs/core": "0.1.0-beta.31"
16
+ "@nextsparkjs/core": "0.1.0-beta.36"
17
17
  },
18
18
  "nextspark": {
19
19
  "type": "theme",
@@ -12,7 +12,8 @@
12
12
  import '@testing-library/cypress/add-commands'
13
13
 
14
14
  // Import @cypress/grep for test filtering by tags
15
- import registerCypressGrep from '@cypress/grep'
15
+ // v5.x uses named export { register }
16
+ import { register as registerCypressGrep } from '@cypress/grep'
16
17
  registerCypressGrep()
17
18
 
18
19
  // Doc commands are optional (require cypress-slow-down)
@@ -118,8 +118,9 @@ export default defineConfig({
118
118
  })
119
119
 
120
120
  // @cypress/grep plugin for test filtering by tags
121
- const grepPlugin = await import('@cypress/grep/src/plugin.js')
122
- ;(grepPlugin.default || grepPlugin)(config)
121
+ // v5.x uses named export { plugin } from '@cypress/grep/plugin'
122
+ const { plugin: grepPlugin } = await import('@cypress/grep/plugin')
123
+ grepPlugin(config)
123
124
 
124
125
  // Documentation video tasks
125
126
  on('task', {