react-native-bundle-discovery 1.0.1 → 1.1.0-rc.15
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/.discoveryrc.js +1 -1
- package/README.md +22 -5
- package/lib/.tmp.js +17 -0
- package/lib/bin.js +72 -50
- package/lib/build.js +113 -0
- package/lib/server.js +81 -0
- package/package.json +3 -2
- package/pages/_common.js +2 -1
- package/pages/default.js +17 -0
- package/pages/package.js +11 -0
- package/queryHelpers.js +11 -0
- package/views/global.css +36 -0
package/.discoveryrc.js
CHANGED
|
@@ -2,7 +2,7 @@ const path = require("path");
|
|
|
2
2
|
|
|
3
3
|
module.exports = {
|
|
4
4
|
name: "react-native-bundle-discovery",
|
|
5
|
-
data: () => require("./tmp/
|
|
5
|
+
data: () => require("./tmp/rainbow-metro-stats.json"),
|
|
6
6
|
setup: path.resolve(__dirname, "setup.js"),
|
|
7
7
|
view: {
|
|
8
8
|
assets: [
|
package/README.md
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
# react-native-bundle-discovery
|
|
2
2
|
|
|
3
|
-
> [!WARNING]
|
|
4
|
-
> Currently, everything is in a very early stage. The project is not yet ready for use.
|
|
5
|
-
|
|
6
3
|
A simple package that helps developers visualize and analyze the bundle size of React Native apps.
|
|
7
4
|
With this tool, you can easily explore your app's codebase, identify large or heavy packages, and inspect the structure of modules and code within your project.
|
|
8
5
|
|
|
9
6
|
<img width="800" alt="" src="./assets/img.png" />
|
|
10
7
|
|
|
8
|
+
|
|
9
|
+
### What you should consider when analyzing your bundle
|
|
10
|
+
|
|
11
|
+
1. if you use **React 19** then it's time to remove a `prop-types` package from your bundle.
|
|
12
|
+
2. Search for `development|debug|dev|storybook` modules in your production JS bundle (it's a dead code that should not be there).
|
|
13
|
+
3. Also check polyfills duplicates (search example: `url|fetch|crypto|buffer|base-?64`).
|
|
14
|
+
4. Verify that you don't have any similar packages in your bundle (search example: `object|just-|debounce|ramda|lodash|underscore`). I often see that devs use both `lodash/debounce`, `lodash.debounce` and `debounce` in their projects. Or mix `ramda`, `underscore` and `lodash`._
|
|
15
|
+
5. Try to find `package.json$` files in your bundle. They are often used to get only the package `version/name` but all other fields are not needed in the bundle.
|
|
16
|
+
6. Please provide your ideas soo other devs can benefit from them :)
|
|
17
|
+
|
|
18
|
+
|
|
11
19
|
### Setup:
|
|
12
20
|
|
|
13
21
|
#### 1. Install
|
|
@@ -53,14 +61,23 @@ npx react-native bundle \
|
|
|
53
61
|
--assets-dest ios/assets
|
|
54
62
|
```
|
|
55
63
|
|
|
56
|
-
#### 4. View the report
|
|
64
|
+
#### 4. View the report in the browser
|
|
57
65
|
|
|
58
66
|
Run webserver to view the report:
|
|
59
67
|
|
|
60
68
|
```bash
|
|
61
|
-
npx react-native-bundle-discovery metro-stats.json
|
|
69
|
+
npx react-native-bundle-discovery server metro-stats.json [--port <port>]
|
|
62
70
|
```
|
|
63
71
|
|
|
72
|
+
#### 4. Build the HTML report
|
|
73
|
+
|
|
74
|
+
Run the following command to generate an HTML report from the JSON file:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
npx react-native-bundle-discovery build metro-stats.json
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
|
|
64
81
|
---
|
|
65
82
|
|
|
66
83
|
### `createSerializer(optiosn: Options)`
|
package/lib/.tmp.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"name": "react-native-bundle-discovery",
|
|
3
|
+
"data": () => require("/Users/davyd.narbutovich/open-source/bundle-discovery/tmp/rocket-chat-metro-stats.json"),
|
|
4
|
+
"setup": "/Users/davyd.narbutovich/open-source/bundle-discovery/setup.js",
|
|
5
|
+
"view": {
|
|
6
|
+
"assets": [
|
|
7
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/views/global.css",
|
|
8
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/pages/default.js",
|
|
9
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/pages/module.js",
|
|
10
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/pages/package.js",
|
|
11
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/views/highcharts.css",
|
|
12
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/views/prettify.js",
|
|
13
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/views/highcharts.js",
|
|
14
|
+
"/Users/davyd.narbutovich/open-source/bundle-discovery/views/foamtree.js"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
};
|
package/lib/bin.js
CHANGED
|
@@ -1,52 +1,74 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const
|
|
3
|
-
const
|
|
4
|
-
const chalk = require("chalk");
|
|
5
|
-
const { createServer } = require("@discoveryjs/cli");
|
|
6
|
-
const config = require("../.discoveryrc.js");
|
|
2
|
+
const yargs = require("yargs");
|
|
3
|
+
const { hideBin } = require("yargs/helpers");
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
)
|
|
5
|
+
yargs(hideBin(process.argv))
|
|
6
|
+
.command(
|
|
7
|
+
"server <file> [port]",
|
|
8
|
+
"🚀 Run a web server to show a Metro bundler stat report",
|
|
9
|
+
(yargs) => {
|
|
10
|
+
return yargs
|
|
11
|
+
.positional("file", {
|
|
12
|
+
describe: "Path to the Metro bundler report json file",
|
|
13
|
+
type: "string",
|
|
14
|
+
demandOption: true,
|
|
15
|
+
})
|
|
16
|
+
.positional("port", {
|
|
17
|
+
describe:
|
|
18
|
+
"🔌 Port to start the server on (also can be set with PORT env. var.)",
|
|
19
|
+
type: "number",
|
|
20
|
+
default: 8079,
|
|
21
|
+
});
|
|
22
|
+
},
|
|
23
|
+
(argv) => {
|
|
24
|
+
const { serve } = require("./server.js");
|
|
25
|
+
serve(argv.file, argv.port, argv.verbose);
|
|
26
|
+
},
|
|
27
|
+
)
|
|
28
|
+
.command(
|
|
29
|
+
"build <file>",
|
|
30
|
+
"📦 Build a HTML report from the Metro bundler stat file",
|
|
31
|
+
(yargs) => {
|
|
32
|
+
return yargs
|
|
33
|
+
.positional("file", {
|
|
34
|
+
describe: "Path to the Metro bundler report json file",
|
|
35
|
+
type: "string",
|
|
36
|
+
demandOption: true,
|
|
37
|
+
})
|
|
38
|
+
.option("output", {
|
|
39
|
+
alias: "o",
|
|
40
|
+
describe: "Path for a build result",
|
|
41
|
+
type: "string",
|
|
42
|
+
default: ".bundle-discovery",
|
|
43
|
+
})
|
|
44
|
+
.option("clean", {
|
|
45
|
+
alias: "c",
|
|
46
|
+
describe: "Clean the output directory before emit a build files",
|
|
47
|
+
type: "boolean",
|
|
48
|
+
default: true,
|
|
49
|
+
})
|
|
50
|
+
.option("single-file", {
|
|
51
|
+
alias: "s",
|
|
52
|
+
describe: "Output a report build as a single HTML file",
|
|
53
|
+
type: "boolean",
|
|
54
|
+
default: true,
|
|
55
|
+
});
|
|
56
|
+
},
|
|
57
|
+
(argv) => {
|
|
58
|
+
const { buildHtmlPage } = require("./build.js");
|
|
59
|
+
buildHtmlPage(
|
|
60
|
+
argv.file,
|
|
61
|
+
argv.output,
|
|
62
|
+
argv.clean,
|
|
63
|
+
argv.singleFile,
|
|
64
|
+
argv.verbose,
|
|
65
|
+
);
|
|
66
|
+
},
|
|
67
|
+
)
|
|
68
|
+
.option("verbose", {
|
|
69
|
+
alias: "v",
|
|
70
|
+
type: "boolean",
|
|
71
|
+
description: "Run with verbose logging",
|
|
72
|
+
})
|
|
73
|
+
.help()
|
|
74
|
+
.parse();
|
package/lib/build.js
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
const fs = require("fs");
|
|
2
|
+
const path = require("path");
|
|
3
|
+
const chalk = require("chalk");
|
|
4
|
+
const { build } = require("@discoveryjs/cli");
|
|
5
|
+
const config = require("../.discoveryrc.js");
|
|
6
|
+
|
|
7
|
+
function buildHtmlPage(filePath, output, clean, singleFile, verbose) {
|
|
8
|
+
if (verbose) {
|
|
9
|
+
console.info(
|
|
10
|
+
`Building HTML page from file: ${chalk.green(filePath)} options: ${JSON.stringify(
|
|
11
|
+
{ output, clean, singleFile },
|
|
12
|
+
null,
|
|
13
|
+
2,
|
|
14
|
+
)}`,
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if (!filePath) {
|
|
19
|
+
console.error(
|
|
20
|
+
`Usage: '${chalk.green("npx react-native-bundle-discovery build <path-to-file>")}', Please provide a path to a JSON file.`,
|
|
21
|
+
);
|
|
22
|
+
process.exit(1);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const jsonFilePath = path.resolve(process.cwd(), filePath);
|
|
26
|
+
if (verbose) {
|
|
27
|
+
console.info(
|
|
28
|
+
`Loading JSON file from: ${chalk.green(jsonFilePath)}, base directory: ${chalk.green(process.cwd())}`,
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
let fullJsonPath;
|
|
33
|
+
|
|
34
|
+
try {
|
|
35
|
+
fullJsonPath = require.resolve(jsonFilePath);
|
|
36
|
+
} catch (err) {
|
|
37
|
+
console.error(`❌Error loading file: ${chalk.red(jsonFilePath)}\n\n`);
|
|
38
|
+
console.error(err.message);
|
|
39
|
+
process.exit(1);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const configFile = path.resolve(__dirname, "./.tmp.js");
|
|
43
|
+
|
|
44
|
+
if (verbose) {
|
|
45
|
+
console.info(
|
|
46
|
+
`Creating temporary config file at: ${chalk.green(configFile)}, for discovery.js`,
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
fs.writeFileSync(
|
|
50
|
+
configFile,
|
|
51
|
+
`module.exports = ${JSON.stringify(
|
|
52
|
+
{ ...config, data: "<tmp>" },
|
|
53
|
+
null,
|
|
54
|
+
1,
|
|
55
|
+
).replace(`"<tmp>"`, `() => require("${fullJsonPath}")`)};`,
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
if (verbose) {
|
|
59
|
+
console.info(`Building HTML page with options:`, {
|
|
60
|
+
output,
|
|
61
|
+
clean,
|
|
62
|
+
singleFile,
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const _config = {
|
|
67
|
+
name: "Bundle Discovery",
|
|
68
|
+
mode: "single",
|
|
69
|
+
// models: [ [Object] ],
|
|
70
|
+
colorScheme: "auto",
|
|
71
|
+
download: true,
|
|
72
|
+
upload: false,
|
|
73
|
+
embed: false,
|
|
74
|
+
encodings: false,
|
|
75
|
+
};
|
|
76
|
+
const _options = {
|
|
77
|
+
singleFile,
|
|
78
|
+
clean,
|
|
79
|
+
output,
|
|
80
|
+
//
|
|
81
|
+
cache: true,
|
|
82
|
+
cachedir: path.resolve(__dirname, "./.discoveryjs-cache"),
|
|
83
|
+
checkCacheTtl: false,
|
|
84
|
+
minify: true,
|
|
85
|
+
dataCompression: true,
|
|
86
|
+
sourcemap: false,
|
|
87
|
+
embed: "by-config",
|
|
88
|
+
experimentalJsonxl: false,
|
|
89
|
+
scriptFormat: "esm",
|
|
90
|
+
scriptExternal: [],
|
|
91
|
+
data: true,
|
|
92
|
+
excludeModelOnDataFail: false,
|
|
93
|
+
prettyData: false,
|
|
94
|
+
modelDownload: false,
|
|
95
|
+
modelDataUpload: true,
|
|
96
|
+
modelResetCache: false,
|
|
97
|
+
serveOnlyAssets: true,
|
|
98
|
+
dev: true,
|
|
99
|
+
config: configFile,
|
|
100
|
+
configFile: configFile,
|
|
101
|
+
};
|
|
102
|
+
build(_options, _config, configFile).then((result) => {
|
|
103
|
+
console.log(
|
|
104
|
+
`✅ HTML page built successfully at: ${chalk.green(
|
|
105
|
+
path.resolve(output, "index.html").replace(process.cwd() + "/", ""),
|
|
106
|
+
)}`,
|
|
107
|
+
);
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
module.exports = {
|
|
112
|
+
buildHtmlPage,
|
|
113
|
+
};
|
package/lib/server.js
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const fs = require("fs");
|
|
2
|
+
const path = require("path");
|
|
3
|
+
const chalk = require("chalk");
|
|
4
|
+
const { createServer } = require("@discoveryjs/cli");
|
|
5
|
+
const config = require("../.discoveryrc.js");
|
|
6
|
+
|
|
7
|
+
function serve(filePath, port, verbose) {
|
|
8
|
+
const PORT = process.env.PORT || port;
|
|
9
|
+
|
|
10
|
+
if (verbose) {
|
|
11
|
+
console.info(
|
|
12
|
+
`start server with file: ${filePath} on port: ${port} ${process.env.PORT ? `(${chalk.yellow("PORT")} env)` : ""}`,
|
|
13
|
+
);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
if (!filePath) {
|
|
17
|
+
console.error(
|
|
18
|
+
`Usage: '${chalk.green("npx react-native-bundle-discovery server <path-to-file>")}', Please provide a path to a JSON file.`,
|
|
19
|
+
);
|
|
20
|
+
process.exit(1);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const jsonFilePath = path.resolve(process.cwd(), filePath);
|
|
24
|
+
if (verbose) {
|
|
25
|
+
console.info(
|
|
26
|
+
`Loading JSON file from: ${chalk.green(jsonFilePath)}, base directory: ${chalk.green(process.cwd())}`,
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
let fullJsonPath;
|
|
31
|
+
|
|
32
|
+
try {
|
|
33
|
+
fullJsonPath = require.resolve(jsonFilePath);
|
|
34
|
+
} catch (err) {
|
|
35
|
+
console.error(`❌Error loading file: ${chalk.red(jsonFilePath)}\n\n`);
|
|
36
|
+
console.error(err.message);
|
|
37
|
+
process.exit(1);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const configFile = path.resolve(__dirname, "./.tmp.js");
|
|
41
|
+
|
|
42
|
+
if (verbose) {
|
|
43
|
+
console.info(
|
|
44
|
+
`Creating temporary config file at: ${chalk.green(configFile)}, for discovery.js`,
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
fs.writeFileSync(
|
|
48
|
+
configFile,
|
|
49
|
+
`module.exports = ${JSON.stringify(
|
|
50
|
+
{ ...config, data: "<tmp>" },
|
|
51
|
+
null,
|
|
52
|
+
1,
|
|
53
|
+
).replace(`"<tmp>"`, `() => require("${fullJsonPath}")`)};`,
|
|
54
|
+
);
|
|
55
|
+
|
|
56
|
+
if (verbose) {
|
|
57
|
+
console.info(`Running server with config: ${chalk.green(configFile)}`);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
createServer({
|
|
61
|
+
cache: false,
|
|
62
|
+
minify: true,
|
|
63
|
+
dev: false,
|
|
64
|
+
config: configFile,
|
|
65
|
+
configFile,
|
|
66
|
+
}).then((server) =>
|
|
67
|
+
server.listen(PORT, () => {
|
|
68
|
+
console.log(`========================================`);
|
|
69
|
+
console.log(
|
|
70
|
+
`🚀 Server listen on ${chalk.green.underline(
|
|
71
|
+
chalk.green(`http://localhost:${PORT}`),
|
|
72
|
+
)}`,
|
|
73
|
+
);
|
|
74
|
+
console.log(`========================================`);
|
|
75
|
+
}),
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = {
|
|
80
|
+
serve,
|
|
81
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-bundle-discovery",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.1.0-rc.15",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"bin": "lib/bin.js",
|
|
6
6
|
"repository": "git@github.com:retyui/react-native-bundle-discovery.git",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"@discoveryjs/discovery": "1.0.0-beta.93",
|
|
18
18
|
"chalk": "^4.1.2",
|
|
19
19
|
"highcharts": "12.2.0",
|
|
20
|
-
"prettier": "^3.5.3"
|
|
20
|
+
"prettier": "^3.5.3",
|
|
21
|
+
"yargs": "^17.7.2"
|
|
21
22
|
},
|
|
22
23
|
"peerDependencies": {
|
|
23
24
|
"metro": "*"
|
package/pages/_common.js
CHANGED
|
@@ -234,10 +234,11 @@ const metadata = {
|
|
|
234
234
|
|
|
235
235
|
const externalLinkHtml = `<svg class="my-icon my-icon-link" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" ><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3"></path></svg>`;
|
|
236
236
|
|
|
237
|
-
function getCopyToClipboardButton({ textToCopy, className }) {
|
|
237
|
+
function getCopyToClipboardButton({ textToCopy, className, text }) {
|
|
238
238
|
return {
|
|
239
239
|
view: "button",
|
|
240
240
|
className: `${className ?? ""} copy-to-clipboard`,
|
|
241
|
+
text,
|
|
241
242
|
data: `{ textToCopy: ${textToCopy} }`,
|
|
242
243
|
onClick(elm, data) {
|
|
243
244
|
clearTimeout(elm.__timer);
|
package/pages/default.js
CHANGED
|
@@ -3,6 +3,7 @@ const {
|
|
|
3
3
|
getModulesTree,
|
|
4
4
|
getPackage,
|
|
5
5
|
getPackageList,
|
|
6
|
+
getCopyToClipboardButton,
|
|
6
7
|
} = require("./_common");
|
|
7
8
|
|
|
8
9
|
const topMetaData = [
|
|
@@ -141,9 +142,25 @@ discovery.page.define("default", [
|
|
|
141
142
|
{
|
|
142
143
|
when: `#.id="${TABS.PACKAGES}"`,
|
|
143
144
|
content: [
|
|
145
|
+
getCopyToClipboardButton({
|
|
146
|
+
text: "Copy list",
|
|
147
|
+
className: "copy-before-ask-chatgpt",
|
|
148
|
+
textToCopy: `"- " + modules.filter(=> path has "node_modules").group(=> path.getModulesName()).map(=> $.key).join("\\n- ")`,
|
|
149
|
+
}),
|
|
150
|
+
{
|
|
151
|
+
view: "link",
|
|
152
|
+
className: "ask-chatgpt view-button",
|
|
153
|
+
text: "and Ask ChatGPT",
|
|
154
|
+
external: true,
|
|
155
|
+
data: `{
|
|
156
|
+
href: $.askChatGPTAboutPackages()
|
|
157
|
+
}`,
|
|
158
|
+
},
|
|
144
159
|
{
|
|
145
160
|
view: "content-filter",
|
|
161
|
+
//
|
|
146
162
|
data: `${getPackage(`modules.filter(=> path has "node_modules")`)}.sort(pkgInstances desc, size desc)`,
|
|
163
|
+
className: "packages-content",
|
|
147
164
|
name: "filterByPathStr",
|
|
148
165
|
content: getPackageList({
|
|
149
166
|
showCopiesBadge: true,
|
package/pages/package.js
CHANGED
|
@@ -98,6 +98,17 @@ discovery.page.define("package", {
|
|
|
98
98
|
`html: '<span class="my-icon-inline my-icon-12">${externalLinkHtml}</span>'`,
|
|
99
99
|
],
|
|
100
100
|
},
|
|
101
|
+
{
|
|
102
|
+
view: "link",
|
|
103
|
+
external: true,
|
|
104
|
+
data: `{ href: "https://bundlejs.com/?q=" + currentPkgWithUniqVer, q: currentPkgWithUniqVer }`,
|
|
105
|
+
content: [
|
|
106
|
+
{
|
|
107
|
+
view: "html",
|
|
108
|
+
data: `'<img class="bundlejs-badge-img" src="https://deno.bundlejs.com/?q=' + q + '&badge=detailed" />'`,
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
},
|
|
101
112
|
],
|
|
102
113
|
},
|
|
103
114
|
|
package/queryHelpers.js
CHANGED
|
@@ -19,6 +19,17 @@ const helpers = {
|
|
|
19
19
|
return formatted;
|
|
20
20
|
});
|
|
21
21
|
},
|
|
22
|
+
askChatGPTAboutPackages() {
|
|
23
|
+
const prompt = `I have a list of JavaScript packages from my React Native bundle (see below). I want to optimize bundle size by identifying similar or redundant packages — such as multiple versions of similar libraries (e.g., lodash, lodash-es, underscore, etc.), duplicate utilities, or overlapping functionality (e.g., date libraries like moment, dayjs, date-fns).
|
|
24
|
+
|
|
25
|
+
Please do the following:
|
|
26
|
+
|
|
27
|
+
1. Group similar or overlapping packages together.
|
|
28
|
+
2. For each group, suggest which one to keep and which ones to consider removing.
|
|
29
|
+
3. For each group, provide a regex string that can be used to filter those packages from the list (e.g., in grep, find, or search tools).
|
|
30
|
+
4. Keep the output concise and copy-paste friendly.`;
|
|
31
|
+
return `https://chat.openai.com/?prompt=${encodeURIComponent(prompt)}`;
|
|
32
|
+
},
|
|
22
33
|
plural(count, [singular, plural]) {
|
|
23
34
|
return count === 1 ? singular : plural;
|
|
24
35
|
},
|
package/views/global.css
CHANGED
|
@@ -131,3 +131,39 @@ hr{
|
|
|
131
131
|
margin-top: -26px;
|
|
132
132
|
z-index: 1;
|
|
133
133
|
}
|
|
134
|
+
.ask-chatgpt{
|
|
135
|
+
color: var(--discovery-view-button-color, #000);
|
|
136
|
+
text-decoration: none;
|
|
137
|
+
vertical-align: middle;
|
|
138
|
+
position: absolute;
|
|
139
|
+
z-index: 9;
|
|
140
|
+
margin-top: 12px;
|
|
141
|
+
margin-left: 105px !important;
|
|
142
|
+
height: 35px;
|
|
143
|
+
}
|
|
144
|
+
.ask-chatgpt::before {
|
|
145
|
+
content: '”';
|
|
146
|
+
font-size: 2em;
|
|
147
|
+
vertical-align: middle;
|
|
148
|
+
font-family: math;
|
|
149
|
+
margin-right: 0.2em;
|
|
150
|
+
display: inline-block;
|
|
151
|
+
height: 15px;
|
|
152
|
+
}
|
|
153
|
+
.packages-content>.view-input{
|
|
154
|
+
padding-left: 265px;
|
|
155
|
+
}
|
|
156
|
+
.copy-before-ask-chatgpt{
|
|
157
|
+
width: 95px;
|
|
158
|
+
background-position: left center;
|
|
159
|
+
padding-left: 25px;
|
|
160
|
+
position: absolute;
|
|
161
|
+
z-index: 9;
|
|
162
|
+
margin-top: 12px;
|
|
163
|
+
height: 35px;
|
|
164
|
+
}
|
|
165
|
+
.bundlejs-badge-img{
|
|
166
|
+
line-height: 0;
|
|
167
|
+
margin-bottom: -5px;
|
|
168
|
+
margin-left: 10px;
|
|
169
|
+
}
|