@vyriy/jest-config 0.1.23 → 0.2.0

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 (3) hide show
  1. package/README.md +2 -0
  2. package/index.js +1 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -100,3 +100,5 @@ In this repository the root Jest config is a thin wrapper:
100
100
  ```js
101
101
  export { default } from '@vyriy/jest-config';
102
102
  ```
103
+
104
+ See the article with a complete testing setup walkthrough: <https://vyriy.dev/examples/vyriy-jest-config/>.
package/index.js CHANGED
@@ -17,6 +17,7 @@ const config = {
17
17
  '<rootDir>/dist/',
18
18
  '<rootDir>/build/',
19
19
  '<rootDir>/bin/',
20
+ '<rootDir>/packages/.*/bin/',
20
21
  '<rootDir>/.bin/',
21
22
  '<rootDir>/.storybook/',
22
23
  '<rootDir>/coverage/',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vyriy/jest-config",
3
- "version": "0.1.23",
3
+ "version": "0.2.0",
4
4
  "description": "Shared Jest config for Vyriy projects",
5
5
  "type": "module",
6
6
  "main": "./index.js",