@davidsneighbour/cypress-config 4.0.3 → 4.0.7
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/README.md +10 -9
- package/package.json +7 -14
package/README.md
CHANGED
|
@@ -32,20 +32,20 @@ This configuration setup uses the approach of [Gleb Bahmutov's blog post](https:
|
|
|
32
32
|
|
|
33
33
|
## Default settings of this configuration
|
|
34
34
|
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
35
|
+
- All cypress files reside within the `tests` directory (no need for additional directories in the root directory).
|
|
36
|
+
- The base url is set to http://localhost:1313 - default for all Hugo dev server instances.
|
|
37
|
+
- IDEs like IntelliJ import the schema to offer typeahead code hints.
|
|
38
|
+
- `watchForFileChanges` is enabled.
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
<!-- CONFIGURATIONS BEGIN -->
|
|
41
41
|
|
|
42
|
-
## davidsneighbour/
|
|
42
|
+
## davidsneighbour/configurations
|
|
43
43
|
|
|
44
44
|
A collection of configurations for website development at DNB Org.
|
|
45
45
|
|
|
46
46
|
<!-- prettier-ignore -->
|
|
47
|
-
|
|
|
48
|
-
| --- |
|
|
47
|
+
|Package | Description |
|
|
48
|
+
| --- | --- |
|
|
49
49
|
| [babel-config](https://github.com/davidsneighbour/configurations/tree/main/packages/babel-config) | [Babel](https://babeljs.io/) configuration |
|
|
50
50
|
| [bootstrap-config](https://github.com/davidsneighbour/configurations/tree/main/packages/bootstrap-config) | [Bootstrap](https://getbootstrap.com/) configuration |
|
|
51
51
|
| [browserslist-config](https://github.com/davidsneighbour/configurations/tree/main/packages/browserslist-config) | [Browserslist](https://github.com/browserslist/browserslist) configuration |
|
|
@@ -53,6 +53,7 @@ A collection of configurations for website development at DNB Org.
|
|
|
53
53
|
| [cssnano-config](https://github.com/davidsneighbour/configurations/tree/main/packages/cssnano-config) | [CSSnano](https://cssnano.co/) configuration |
|
|
54
54
|
| [cypress-config](https://github.com/davidsneighbour/configurations/tree/main/packages/cypress-config) | [Cypress](https://www.cypress.io/) configuration |
|
|
55
55
|
| [eslint-config](https://github.com/davidsneighbour/configurations/tree/main/packages/eslint-config) | [ESLint](https://github.com/eslint/eslint) configuration |
|
|
56
|
+
| [htmlvalidate-config](https://github.com/davidsneighbour/configurations/tree/main/packages/htmlvalidate-config) | [HTMLValidate](https://html-validate.org/) configuration |
|
|
56
57
|
| [postcss-config](https://github.com/davidsneighbour/configurations/tree/main/packages/postcss-config) | [PostCSS](https://postcss.org/) configuration |
|
|
57
58
|
| [prettier-config](https://github.com/davidsneighbour/configurations/tree/main/packages/prettier-config) | [Prettier](https://prettier.io/) configuration |
|
|
58
59
|
| [remark-config](https://github.com/davidsneighbour/configurations/tree/main/packages/remark-config) | [ReMark](https://github.com/remarkjs/remark-lint) configuration |
|
|
@@ -62,4 +63,4 @@ A collection of configurations for website development at DNB Org.
|
|
|
62
63
|
| [webpack-config](https://github.com/davidsneighbour/configurations/tree/main/packages/webpack-config) | [Webpack](https://webpack.js.org/) configuration |
|
|
63
64
|
| [tools](https://github.com/davidsneighbour/configurations/tree/main/packages/tools) | Tools |
|
|
64
65
|
|
|
65
|
-
|
|
66
|
+
<!-- CONFIGURATIONS END -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidsneighbour/cypress-config",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Cypress configuration for davidsneighbour projects.",
|
|
6
6
|
"author": {
|
|
@@ -13,22 +13,15 @@
|
|
|
13
13
|
"url": "https://github.com/davidsneighbour/configurations/issues"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"axe-core": "^4.4.
|
|
17
|
-
"cypress": "^
|
|
16
|
+
"axe-core": "^4.4.2",
|
|
17
|
+
"cypress": "^10.0.1",
|
|
18
18
|
"cypress-axe": "^0.14.0",
|
|
19
19
|
"debug": "^4.3.4",
|
|
20
20
|
"deepmerge": "^4.2.2",
|
|
21
21
|
"eslint-plugin-cypress": "^2.12.1"
|
|
22
22
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
"engines": {
|
|
29
|
-
"node": ">=16",
|
|
30
|
-
"npm": ">=7"
|
|
31
|
-
},
|
|
32
|
-
"gitHead": "eadef54f7c481d032378e3d47e1f6493c939ee81",
|
|
33
|
-
"main": "index.js"
|
|
23
|
+
"main": "index.js",
|
|
24
|
+
"script": {
|
|
25
|
+
"release": "../../release"
|
|
26
|
+
}
|
|
34
27
|
}
|