create-quilt-app
Advanced tools
Comparing version 0.0.0-preact-aliases-in-test-20220320003146 to 0.0.0-stricter-typescript-20220327233127
# create-quilt-app | ||
## 0.0.0-preact-aliases-in-test-20220320003146 | ||
## 0.0.0-stricter-typescript-20220327233127 | ||
### Patch Changes | ||
- [#203](https://github.com/lemonmade/quilt/pull/203) [`1401124a`](https://github.com/lemonmade/quilt/commit/1401124aaac495b07ad8c035a17cadcbdcb8dd2e) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix test files being included in TypeScript output | ||
- [#228](https://github.com/lemonmade/quilt/pull/228) [`e72333d4`](https://github.com/lemonmade/quilt/commit/e72333d4d0d241f0f31a01303edc183f08f60ab4) Thanks [@lemonmade](https://github.com/lemonmade)! - Upgrade to stricter typescript options | ||
## 0.1.20 | ||
### Patch Changes | ||
- [`e3d57269`](https://github.com/lemonmade/quilt/commit/e3d57269978f88af2b72639c5ad054669b57a169) Thanks [@lemonmade](https://github.com/lemonmade)! - Clean up package bundle declaration | ||
## 0.1.19 | ||
### Patch Changes | ||
- [`78fe1682`](https://github.com/lemonmade/quilt/commit/78fe1682e3f258ffca719c7eaaeeac05031dfa80) Thanks [@lemonmade](https://github.com/lemonmade)! - Simplify craft and sewing-kit | ||
## 0.1.18 | ||
### Patch Changes | ||
- [#214](https://github.com/lemonmade/quilt/pull/214) [`70dc3a9a`](https://github.com/lemonmade/quilt/commit/70dc3a9a52cec86224017874520e0ec941b8b85f) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix polyfill package resolution | ||
## 0.1.17 | ||
### Patch Changes | ||
- [`65db3731`](https://github.com/lemonmade/quilt/commit/65db37312192507643bafa672a29d8e63cce823f) Thanks [@lemonmade](https://github.com/lemonmade)! - Force another version bump | ||
## 0.1.16 | ||
### Patch Changes | ||
- [`0735184`](https://github.com/lemonmade/quilt/commit/073518430d0fcabab7a2db9c76f8a69dac1fdea5) Thanks [@lemonmade](https://github.com/lemonmade)! - Publish new latest versions | ||
## 0.1.15 | ||
### Patch Changes | ||
- [#206](https://github.com/lemonmade/quilt/pull/206) [`d3c6346`](https://github.com/lemonmade/quilt/commit/d3c6346dc61a77fd6d45f13abe29222742b895fc) Thanks [@lemonmade](https://github.com/lemonmade)! - Update templates to include React dependencies | ||
## 0.1.14 | ||
### Patch Changes | ||
- [#203](https://github.com/lemonmade/quilt/pull/203) [`2a5063f`](https://github.com/lemonmade/quilt/commit/2a5063fe8e949eaa7829dd5685901b67a06c09c8) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix test files being included in TypeScript output | ||
## 0.1.13 | ||
@@ -10,0 +52,0 @@ |
{ | ||
"name": "create-quilt-app", | ||
"type": "module", | ||
"version": "0.0.0-preact-aliases-in-test-20220320003146", | ||
"version": "0.0.0-stricter-typescript-20220327233127", | ||
"license": "MIT", | ||
@@ -22,3 +22,3 @@ "repository": { | ||
"fs-extra": "^10.0.0", | ||
"pkg-dir": "^5.0.0", | ||
"pkg-dir": "^6.0.0", | ||
"prompts": "^2.0.0" | ||
@@ -25,0 +25,0 @@ }, |
@@ -12,3 +12,3 @@ /* eslint no-console: off */ | ||
import color from 'colorette'; | ||
import pkgDir from 'pkg-dir'; | ||
import {packageDirectory} from 'pkg-dir'; | ||
@@ -52,3 +52,3 @@ const argv = arg({}); | ||
type: () => | ||
!fs.existsSync(targetDirectory) || isEmpty(targetDirectory) | ||
!fs.existsSync(targetDirectory!) || isEmpty(targetDirectory!) | ||
? (null as any) | ||
@@ -79,4 +79,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!); | ||
@@ -91,5 +91,5 @@ if (overwrite) { | ||
const packageRoot = await pkgDir( | ||
path.dirname(fileURLToPath(import.meta.url)), | ||
); | ||
const packageRoot = await packageDirectory({ | ||
cwd: path.dirname(fileURLToPath(import.meta.url)), | ||
}); | ||
@@ -96,0 +96,0 @@ const templateRoot = path.join(packageRoot!, 'template'); |
@@ -7,10 +7,12 @@ { | ||
"scripts": { | ||
"lint": "sewing-kit lint", | ||
"test": "sewing-kit test", | ||
"type-check": "sewing-kit type-check", | ||
"develop": "sewing-kit develop", | ||
"build": "sewing-kit build" | ||
"lint": "quilt lint", | ||
"test": "quilt test", | ||
"type-check": "quilt type-check", | ||
"develop": "quilt develop", | ||
"build": "quilt build" | ||
}, | ||
"dependencies": { | ||
"@quilted/quilt": "^0.5.0" | ||
"@quilted/quilt": "^0.5.0", | ||
"react": "npm:@quilted/react@^0.1.0", | ||
"react-dom": "npm:@quilted/react@^0.1.0" | ||
}, | ||
@@ -22,3 +24,2 @@ "devDependencies": { | ||
"@quilted/prettier": "^0.2.0", | ||
"@quilted/sewing-kit": "^0.2.0", | ||
"@quilted/typescript": "^0.2.0", | ||
@@ -25,0 +26,0 @@ "typescript": "^4.6.0" |
@@ -6,4 +6,4 @@ { | ||
}, | ||
"include": ["**/sewing-kit.config.ts"], | ||
"include": ["**/quilt.project.ts"], | ||
"references": [{"path": "./app"}] | ||
} |
@@ -8,4 +8,4 @@ { | ||
"include": ["src"], | ||
"exclude": ["sewing-kit.config.ts", "**/*.test.ts", "**/*.test.tsx"], | ||
"exclude": ["quilt.project.ts", "**/*.test.ts", "**/*.test.tsx"], | ||
"references": [{"path": "../quilt"}, {"path": "../craft"}] | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Possible typosquat attack
Supply chain riskThere is a package with a similar name that is downloaded much more often.
Did you mean |
---|
create-next-app |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
0
13
412911
10935