complete-cli 1.1.0 → 1.1.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.
@@ -169,5 +169,5 @@ async function installNodeModules(projectPath, skipInstall, packageManager) {
169
169
  }
170
170
  async function formatFiles(projectPath) {
171
171
  const $$q = $q({ cwd: projectPath });
172
- await $$q `prettier --write ${projectPath}`;
172
+ await $$q `prettier --write .`;
173
173
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -255,5 +255,5 @@ async function installNodeModules(
255
255
 
256
256
  async function formatFiles(projectPath: string) {
257
257
  const $$q = $q({ cwd: projectPath });
258
- await $$q`prettier --write ${projectPath}`;
258
+ await $$q`prettier --write .`;
259
259
  }