isaacscript 3.16.1-dev.4 → 3.16.1-dev.6
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.
|
@@ -16,7 +16,8 @@ export async function createProject(projectName, authorName, projectPath, create
|
|
|
16
16
|
copyStaticFiles(projectPath, typeScript);
|
|
17
17
|
copyDynamicFiles(projectName, authorName, projectPath, packageManager, dev, typeScript);
|
|
18
18
|
upgradeYarn(projectPath, packageManager, verbose);
|
|
19
|
-
|
|
19
|
+
// There is no package manager lock files yet, so we have to pass "false" to this function.
|
|
20
|
+
await updatePackageJSON(projectPath, false);
|
|
20
21
|
installNodeModules(projectPath, skipInstall, packageManager, verbose);
|
|
21
22
|
formatFiles(projectPath, packageManager, verbose);
|
|
22
23
|
// Only make the initial commit once all of the files have been copied and formatted.
|