@storybook/react-native 8.4.2-alpha.0 → 8.4.2-alpha.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.
|
@@ -7,6 +7,10 @@ var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
|
7
7
|
var __commonJS = (cb, mod) => function __require() {
|
|
8
8
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9
9
|
};
|
|
10
|
+
var __export = (target, all) => {
|
|
11
|
+
for (var name in all)
|
|
12
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
13
|
+
};
|
|
10
14
|
var __copyProps = (to, from, except, desc) => {
|
|
11
15
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
16
|
for (let key of __getOwnPropNames(from))
|
|
@@ -23,10 +27,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
23
27
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
24
28
|
mod
|
|
25
29
|
));
|
|
30
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
26
31
|
|
|
27
32
|
// scripts/common.js
|
|
28
33
|
var require_common = __commonJS({
|
|
29
|
-
"scripts/common.js"(
|
|
34
|
+
"scripts/common.js"(exports, module2) {
|
|
30
35
|
var { globToRegexp, serverRequire } = require("@storybook/core/common");
|
|
31
36
|
var path2 = require("path");
|
|
32
37
|
var fs = require("fs");
|
|
@@ -99,7 +104,7 @@ var require_common = __commonJS({
|
|
|
99
104
|
|
|
100
105
|
// scripts/generate.js
|
|
101
106
|
var require_generate = __commonJS({
|
|
102
|
-
"scripts/generate.js"(
|
|
107
|
+
"scripts/generate.js"(exports, module2) {
|
|
103
108
|
var {
|
|
104
109
|
toRequireContext,
|
|
105
110
|
ensureRelativePathHasDot,
|
|
@@ -217,6 +222,11 @@ var require_generate = __commonJS({
|
|
|
217
222
|
});
|
|
218
223
|
|
|
219
224
|
// src/metro/withStorybook.ts
|
|
225
|
+
var withStorybook_exports = {};
|
|
226
|
+
__export(withStorybook_exports, {
|
|
227
|
+
withStorybook: () => withStorybook
|
|
228
|
+
});
|
|
229
|
+
module.exports = __toCommonJS(withStorybook_exports);
|
|
220
230
|
var path = __toESM(require("path"));
|
|
221
231
|
var import_generate = __toESM(require_generate());
|
|
222
232
|
var import_ws = require("ws");
|
|
@@ -300,4 +310,7 @@ function withStorybook(config, options = {
|
|
|
300
310
|
}
|
|
301
311
|
};
|
|
302
312
|
}
|
|
303
|
-
|
|
313
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
314
|
+
0 && (module.exports = {
|
|
315
|
+
withStorybook
|
|
316
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-native",
|
|
3
|
-
"version": "8.4.2-alpha.
|
|
3
|
+
"version": "8.4.2-alpha.1",
|
|
4
4
|
"description": "A better way to develop React Native Components for your app",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@storybook/csf": "^0.1.1",
|
|
50
50
|
"@storybook/global": "^5.0.0",
|
|
51
51
|
"@storybook/react": "^8.4.2",
|
|
52
|
-
"@storybook/react-native-theming": "^8.4.2-alpha.
|
|
53
|
-
"@storybook/react-native-ui": "^8.4.2-alpha.
|
|
52
|
+
"@storybook/react-native-theming": "^8.4.2-alpha.1",
|
|
53
|
+
"@storybook/react-native-ui": "^8.4.2-alpha.1",
|
|
54
54
|
"chokidar": "^3.5.1",
|
|
55
55
|
"commander": "^8.2.0",
|
|
56
56
|
"dedent": "^1.5.1",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"publishConfig": {
|
|
92
92
|
"access": "public"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "2666f953f51ae16341c78e7dd77d44d02e1edf60"
|
|
95
95
|
}
|