@ornikar/bumper 3.4.0 → 3.5.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 +9 -0
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.5.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.4.0...@ornikar/bumper@3.5.0) (2026-03-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add Metro exports [OSE-23450] ([#2926](https://github.com/ornikar/kitt/issues/2926)) ([00f1ef8](https://github.com/ornikar/kitt/commit/00f1ef87be8b190c75a9721d65708b3ea2bcc6ab))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [3.4.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.3.0...@ornikar/bumper@3.4.0) (2026-03-11)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/bumper",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "@ornikar/bumper",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/runtime": "^7.24.0",
|
|
33
|
-
"@ornikar/kitt-icons": "^15.
|
|
33
|
+
"@ornikar/kitt-icons": "^15.1.0",
|
|
34
34
|
"@tamagui/core": "1.144.2",
|
|
35
35
|
"@tamagui/image": "1.144.2",
|
|
36
36
|
"@tamagui/scroll-view": "1.144.2"
|
|
@@ -95,7 +95,10 @@
|
|
|
95
95
|
"require": "./dist/index-node-22.22.cjs.js"
|
|
96
96
|
},
|
|
97
97
|
"react-native": {
|
|
98
|
-
"jest": "./dist/index-node-22.22.cjs.js"
|
|
98
|
+
"jest": "./dist/index-node-22.22.cjs.js",
|
|
99
|
+
"ios": "./dist/index-metro.es.ios.js",
|
|
100
|
+
"android": "./dist/index-metro.es.android.js",
|
|
101
|
+
"default": "./dist/index-metro.es.ios.js"
|
|
99
102
|
},
|
|
100
103
|
"browser": {
|
|
101
104
|
"import": "./dist/index.es.web.js"
|
|
@@ -112,7 +115,10 @@
|
|
|
112
115
|
"require": "./dist/storybook-node-22.22.cjs.js"
|
|
113
116
|
},
|
|
114
117
|
"react-native": {
|
|
115
|
-
"jest": "./dist/storybook-node-22.22.cjs.js"
|
|
118
|
+
"jest": "./dist/storybook-node-22.22.cjs.js",
|
|
119
|
+
"ios": "./dist/storybook-metro.es.ios.js",
|
|
120
|
+
"android": "./dist/storybook-metro.es.android.js",
|
|
121
|
+
"default": "./dist/storybook-metro.es.ios.js"
|
|
116
122
|
},
|
|
117
123
|
"browser": {
|
|
118
124
|
"import": "./dist/storybook.es.web.js"
|
|
@@ -127,6 +133,5 @@
|
|
|
127
133
|
"./storybook": "./dist/storybook.es"
|
|
128
134
|
},
|
|
129
135
|
"main": "./dist/index-node-22.22.es.mjs",
|
|
130
|
-
"react-native": "./dist/index-metro.es",
|
|
131
136
|
"types": "./dist/definitions/index.d.ts"
|
|
132
137
|
}
|