@ornikar/bumper 3.5.0 → 3.6.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 +5 -10
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.6.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.5.0...@ornikar/bumper@3.6.0) (2026-03-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* revert add Metro exports [OSE-23450] ([#2929](https://github.com/ornikar/kitt/issues/2929)) ([303b1d7](https://github.com/ornikar/kitt/commit/303b1d76441c44cb0423053305c7df276fc58c4f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [3.5.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.4.0...@ornikar/bumper@3.5.0) (2026-03-12)
|
|
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.6.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.2.0",
|
|
34
34
|
"@tamagui/core": "1.144.2",
|
|
35
35
|
"@tamagui/image": "1.144.2",
|
|
36
36
|
"@tamagui/scroll-view": "1.144.2"
|
|
@@ -95,10 +95,7 @@
|
|
|
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"
|
|
99
|
-
"ios": "./dist/index-metro.es.ios.js",
|
|
100
|
-
"android": "./dist/index-metro.es.android.js",
|
|
101
|
-
"default": "./dist/index-metro.es.ios.js"
|
|
98
|
+
"jest": "./dist/index-node-22.22.cjs.js"
|
|
102
99
|
},
|
|
103
100
|
"browser": {
|
|
104
101
|
"import": "./dist/index.es.web.js"
|
|
@@ -115,10 +112,7 @@
|
|
|
115
112
|
"require": "./dist/storybook-node-22.22.cjs.js"
|
|
116
113
|
},
|
|
117
114
|
"react-native": {
|
|
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"
|
|
115
|
+
"jest": "./dist/storybook-node-22.22.cjs.js"
|
|
122
116
|
},
|
|
123
117
|
"browser": {
|
|
124
118
|
"import": "./dist/storybook.es.web.js"
|
|
@@ -133,5 +127,6 @@
|
|
|
133
127
|
"./storybook": "./dist/storybook.es"
|
|
134
128
|
},
|
|
135
129
|
"main": "./dist/index-node-22.22.es.mjs",
|
|
130
|
+
"react-native": "./dist/index-metro.es",
|
|
136
131
|
"types": "./dist/definitions/index.d.ts"
|
|
137
132
|
}
|