@ariakit/test 0.4.0 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @ariakit/test
2
2
 
3
+ ## 0.4.2
4
+
5
+ - Updated dependencies: `@ariakit/core@0.4.9`
6
+
7
+ ## 0.4.1
8
+
9
+ - Added a README file to the package.
10
+ - Updated dependencies: `@ariakit/core@0.4.8`
11
+
3
12
  ## 0.4.0
4
13
 
5
14
  - The `render` method now returns a promise of `{ unmount, rerender }` instead of just the `unmount` function.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ariakit/test",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Ariakit test utils",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "react"
30
30
  ],
31
31
  "dependencies": {
32
- "@ariakit/core": "0.4.7",
32
+ "@ariakit/core": "0.4.9",
33
33
  "@testing-library/dom": "^8.0.0 || ^9.0.0 || ^10.0.0"
34
34
  },
35
35
  "peerDependencies": {
package/readme.md ADDED
@@ -0,0 +1,18 @@
1
+ # Ariakit Test
2
+
3
+ **Important:** This package is still experimental. Breaking changes may occur in patch and minor versions.
4
+
5
+ ## Installation
6
+
7
+ ```
8
+ npm i @ariakit/test
9
+ ```
10
+
11
+ ## Core Team
12
+
13
+ - [Diego Haz](https://x.com/diegohaz)
14
+ - [Ben Rodri](https://x.com/benrodrs)
15
+
16
+ ## Contributing
17
+
18
+ Follow the instructions on the [contributing guide](https://github.com/ariakit/ariakit/blob/main/contributing.md).