create-quilt-app
Advanced tools
Comparing version 0.1.20 to 0.1.21
# create-quilt-app | ||
## 0.1.21 | ||
### Patch Changes | ||
- [#228](https://github.com/lemonmade/quilt/pull/228) [`c7afc048`](https://github.com/lemonmade/quilt/commit/c7afc0486d37bc54da704c46cda1166690dda152) Thanks [@lemonmade](https://github.com/lemonmade)! - Upgrade to stricter typescript options | ||
## 0.1.20 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "create-quilt-app", | ||
"type": "module", | ||
"version": "0.1.20", | ||
"version": "0.1.21", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -51,3 +51,3 @@ /* eslint no-console: off */ | ||
type: () => | ||
!fs.existsSync(targetDirectory) || isEmpty(targetDirectory) | ||
!fs.existsSync(targetDirectory!) || isEmpty(targetDirectory!) | ||
? (null as any) | ||
@@ -78,4 +78,4 @@ : 'confirm', | ||
const {overwrite} = result; | ||
const root = path.join(cwd, targetDirectory); | ||
const packageName = toValidPackageName(targetDirectory); | ||
const root = path.join(cwd, targetDirectory!); | ||
const packageName = toValidPackageName(targetDirectory!); | ||
@@ -82,0 +82,0 @@ if (overwrite) { |
Sorry, the diff of this file is not supported yet
412843