@jmlweb/jest-config 0.1.0 → 0.1.2

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/CHANGELOG.md +12 -0
  2. package/README.md +27 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @jmlweb/jest-config
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6b73301: Add changelog section with link to CHANGELOG.md in package READMEs
8
+
9
+ ## 0.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - beae5ae: Add trailing newlines to source files for consistency.
14
+
3
15
  ## 0.1.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -23,6 +23,8 @@
23
23
  npm install --save-dev @jmlweb/jest-config jest ts-jest @types/jest
24
24
  ```
25
25
 
26
+ > 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
27
+
26
28
  ## 🚀 Quick Start
27
29
 
28
30
  Create a `jest.config.ts` file in your project root:
@@ -253,11 +255,36 @@ This package requires the following peer dependencies:
253
255
 
254
256
  ## 🔗 Related Packages
255
257
 
258
+ ### Internal Packages
259
+
256
260
  - [`@jmlweb/vitest-config`](../vitest-config) - Vitest configuration for modern testing
257
261
  - [`@jmlweb/eslint-config-base`](../eslint-config-base) - ESLint config for TypeScript projects
258
262
  - [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
259
263
  - [`@jmlweb/tsconfig-base`](../tsconfig-base) - TypeScript configuration
260
264
 
265
+ ### External Tools
266
+
267
+ - [Jest](https://jestjs.io/) - Delightful JavaScript testing framework
268
+ - [ts-jest](https://kulshekhar.github.io/ts-jest/) - TypeScript preprocessor for Jest
269
+ - [@testing-library/jest-dom](https://testing-library.com/docs/ecosystem-jest-dom/) - Custom Jest matchers for the DOM
270
+ - [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro/) - React testing utilities (for React projects)
271
+
272
+ ## 🔄 Migration Guide
273
+
274
+ ### Upgrading to a New Version
275
+
276
+ > **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
277
+
278
+ **No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
279
+
280
+ For version history, see the [Changelog](./CHANGELOG.md).
281
+
282
+ **Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
283
+
284
+ ## 📜 Changelog
285
+
286
+ See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
287
+
261
288
  ## 📄 License
262
289
 
263
290
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlweb/jest-config",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Base Jest configuration for jmlweb projects with TypeScript support and coverage settings",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",