@atlaskit/media-common 13.3.0 → 13.3.1
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 +8 -0
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/media-common
|
|
2
2
|
|
|
3
|
+
## 13.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2fe9a9909d2ac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2fe9a9909d2ac) -
|
|
8
|
+
Enrol media packages into the React Compiler with platform gating via
|
|
9
|
+
isReactCompilerActivePlatform
|
|
10
|
+
|
|
3
11
|
## 13.3.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-common",
|
|
3
|
-
"version": "13.3.
|
|
3
|
+
"version": "13.3.1",
|
|
4
4
|
"description": "Includes common utilities used by other media packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -23,6 +23,13 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"atlaskit:src": "src/index.ts",
|
|
25
25
|
"atlassian": {
|
|
26
|
+
"react-compiler": {
|
|
27
|
+
"enabled": true,
|
|
28
|
+
"gating": {
|
|
29
|
+
"source": "@atlassian/react-compiler-gating",
|
|
30
|
+
"importSpecifierName": "isReactCompilerActivePlatform"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
26
33
|
"team": "Media Exif",
|
|
27
34
|
"website": {
|
|
28
35
|
"name": "Media Common"
|
|
@@ -48,6 +55,7 @@
|
|
|
48
55
|
}
|
|
49
56
|
},
|
|
50
57
|
"devDependencies": {
|
|
58
|
+
"@atlassian/react-compiler-gating": "workspace:^",
|
|
51
59
|
"enzyme": "^3.10.0",
|
|
52
60
|
"react": "^18.2.0",
|
|
53
61
|
"react-dom": "^18.2.0"
|