create-quilt-app
Advanced tools
Comparing version 0.1.7 to 0.1.8
# create-quilt-app | ||
## 0.1.8 | ||
### Patch Changes | ||
- [#158](https://github.com/lemonmade/quilt/pull/158) [`d9585bb`](https://github.com/lemonmade/quilt/commit/d9585bbc51c25f2d0cba6c656a06c74ed6ed5f93) Thanks [@lemonmade](https://github.com/lemonmade)! - Improve template projects | ||
## 0.1.7 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "create-quilt-app", | ||
"type": "module", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -5,3 +5,2 @@ /* eslint no-console: off */ | ||
import * as path from 'path'; | ||
import {execFileSync} from 'child_process'; | ||
import {EOL} from 'os'; | ||
@@ -108,3 +107,2 @@ import {fileURLToPath} from 'url'; | ||
for (const file of files) { | ||
if (file === '_yarnrc.yml') continue; | ||
if (file === 'package.json') { | ||
@@ -124,19 +122,2 @@ const packageJson = JSON.parse( | ||
console.log(`\nInstalling dependencies...\n`); | ||
execFileSync('yarn', ['set', 'version', 'berry'], { | ||
cwd: root, | ||
}); | ||
write( | ||
'.yarnrc.yml', | ||
fs.readFileSync(path.join(templateRoot, '_yarnrc.yml'), {encoding: 'utf8'}), | ||
); | ||
try { | ||
execFileSync('yarn', ['install'], {cwd: root}); | ||
} catch (error) { | ||
console.log(error.stdout.toString()); | ||
} | ||
console.log(`\nDone! Here’s what you’ll need to do next:\n`); | ||
@@ -146,3 +127,4 @@ if (root !== cwd) { | ||
} | ||
console.log(` yarn develop`); | ||
console.log(` pnpm install # install dependencies`); | ||
console.log(` pnpm develop # run development server`); | ||
console.log(); | ||
@@ -149,0 +131,0 @@ } |
@@ -17,2 +17,3 @@ { | ||
"devDependencies": { | ||
"@quilted/browserslist-config": "^0.1.0", | ||
"@quilted/craft": "^0.1.0", | ||
@@ -34,3 +35,14 @@ "@quilted/eslint-config": "^0.1.0", | ||
] | ||
}, | ||
"browserslist": { | ||
"defaults": [ | ||
"extends @quilted/browserslist-config/defaults" | ||
], | ||
"modules": [ | ||
"extends @quilted/browserslist-config/modules" | ||
], | ||
"evergreen": [ | ||
"extends @quilted/browserslist-config/evergreen" | ||
] | ||
} | ||
} |
@@ -5,7 +5,3 @@ import {createApp, quiltApp} from '@quilted/craft'; | ||
app.entry('./app'); | ||
app.use( | ||
quiltApp({ | ||
assets: {baseUrl: '/assets/'}, | ||
}), | ||
); | ||
app.use(quiltApp()); | ||
}); |
{ | ||
"extends": "@quilted/typescript/workspace.json", | ||
"compilerOptions": { | ||
"outDir": "build/typescript/workspace" | ||
"outDir": "build/typescript" | ||
}, | ||
"include": ["**/sewing-kit.config.ts"], | ||
"references": [{"path": "./tsconfig.app.json"}] | ||
"references": [{"path": "./app"}] | ||
} |
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
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
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
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
0
598647
29
11082
1