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 27148d1 commit a66ac87Copy full SHA for a66ac87
packages/wrangler/src/autoconfig/run.ts
@@ -107,23 +107,6 @@ export async function runAutoConfig(
107
`Running autoconfig with:\n${JSON.stringify(autoConfigDetails, null, 2)}...`
108
);
109
110
- if (autoConfigDetails.packageJson) {
111
- await writeFile(
112
- resolve(autoConfigDetails.projectPath, "package.json"),
113
- JSON.stringify(
114
- {
115
- ...autoConfigDetails.packageJson,
116
- scripts: {
117
- ...autoConfigDetails.packageJson.scripts,
118
- ...autoConfigSummary.scripts,
119
- },
120
121
- null,
122
- 2
123
- )
124
- );
125
- }
126
-
127
if (autoConfigSummary.wranglerInstall) {
128
await installWrangler();
129
}
0 commit comments