We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0040ac commit 767b046Copy full SHA for 767b046
src/utils/archiver.ts
@@ -70,7 +70,7 @@ export default class Archiver {
70
});
71
72
73
- let packageJSON = {};
+ const packageJSON = {};
74
75
if (typeof this.config.run_settings.package_config_options === 'object') {
76
Object.assign(packageJSON, this.config.run_settings.package_config_options);
@@ -81,7 +81,7 @@ export default class Archiver {
81
}
82
83
if (Object.keys(packageJSON).length > 0) {
84
- let packageJSONString = JSON.stringify(packageJSON, null, 4);
+ const packageJSONString = JSON.stringify(packageJSON, null, 4);
85
archive.append(packageJSONString, { name: 'testingbot-package.json' });
86
87
0 commit comments