isaacscript 3.18.0 → 3.18.1

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.
@@ -17,7 +17,7 @@ export async function createProject(projectName, authorName, projectPath, create
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
+ await updatePackageJSON(projectPath, false, true);
21
21
  installNodeModules(projectPath, skipInstall, packageManager, verbose);
22
22
  formatFiles(projectPath, packageManager, verbose);
23
23
  // Only make the initial commit once all of the files have been copied and formatted.
package/dist/main.js CHANGED
@@ -111,13 +111,13 @@ async function handleCommands(command, args) {
111
111
  const hasNewDependencies = await updatePackageJSON(CWD);
112
112
  const msg = hasNewDependencies
113
113
  ? "Successfully installed new Node.js dependencies."
114
- : "There were no new Node.js dependency updates.";
114
+ : "There were no new dependency updates from npm.";
115
115
  console.log(msg);
116
116
  break;
117
117
  }
118
118
  case "nuke": {
119
119
  nukeDependencies(CWD);
120
- console.log("Successfully reinstalled Node.js dependencies.");
120
+ console.log("Successfully reinstalled dependencies from npm.");
121
121
  break;
122
122
  }
123
123
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.18.0",
3
+ "version": "3.18.1",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -48,7 +48,7 @@
48
48
  "chalk": "^5.3.0",
49
49
  "command-exists": "^1.2.9",
50
50
  "figlet": "^1.7.0",
51
- "isaacscript-common-node": "^1.1.1",
51
+ "isaacscript-common-node": "^1.2.0",
52
52
  "isaacscript-common-ts": "^11.3.1",
53
53
  "jsonc-parser": "^3.2.0",
54
54
  "klaw-sync": "^6.0.0",