@nextsparkjs/theme-productivity 0.1.0-beta.31 → 0.1.0-beta.37
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-productivity",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.37",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./config/theme.config.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"react": "^19.0.0",
|
|
13
13
|
"react-dom": "^19.0.0",
|
|
14
14
|
"zod": "^4.0.0",
|
|
15
|
-
"@nextsparkjs/core": "0.1.0-beta.
|
|
15
|
+
"@nextsparkjs/core": "0.1.0-beta.37"
|
|
16
16
|
},
|
|
17
17
|
"nextspark": {
|
|
18
18
|
"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
|
-
|
|
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)
|
package/tests/cypress.config.ts
CHANGED
|
@@ -118,8 +118,9 @@ export default defineConfig({
|
|
|
118
118
|
})
|
|
119
119
|
|
|
120
120
|
// @cypress/grep plugin for test filtering by tags
|
|
121
|
-
|
|
122
|
-
|
|
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', {
|