@wordpress/private-apis 1.15.0 → 1.16.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.
- package/CHANGELOG.md +2 -0
- package/package.json +2 -2
- package/src/test/index.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/private-apis",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Internal experimental APIs for WordPress core.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "f48b9f56629e400891abb5ae491504de475237ff"
|
|
39
39
|
}
|
package/src/test/index.js
CHANGED
|
@@ -236,7 +236,7 @@ describe( 'Specific use-cases of sharing private APIs', () => {
|
|
|
236
236
|
*
|
|
237
237
|
* ```js
|
|
238
238
|
* import { logData } from 'package1';
|
|
239
|
-
* const
|
|
239
|
+
* const experimentalLogData = unlock( logData );
|
|
240
240
|
* ```
|
|
241
241
|
*/
|
|
242
242
|
expect( unlock( logData ) ).toBe( __privateLogData );
|