-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.discoveryrc.js
More file actions
22 lines (21 loc) · 701 Bytes
/
Copy path.discoveryrc.js
File metadata and controls
22 lines (21 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const path = require("path");
module.exports = {
name: "react-native-bundle-discovery",
data: () => require("./tmp/metro-stats.json"),
setup: path.resolve(__dirname, "setup.js"),
view: {
assets: [
// Global styles
path.resolve(__dirname, "views/global.css"),
// Pages
path.resolve(__dirname, "pages/default.js"),
path.resolve(__dirname, "pages/module.js"),
path.resolve(__dirname, "pages/package.js"),
// Custom views
path.resolve(__dirname, "views/highcharts.css"),
path.resolve(__dirname, "views/prettify.js"),
path.resolve(__dirname, "views/highcharts.js"),
path.resolve(__dirname, "views/foamtree.js"),
],
},
};