create-svelte
Advanced tools
Comparing version 2.2.0 to 2.2.1
#!/usr/bin/env node | ||
import fs from 'fs'; | ||
import path from 'path'; | ||
import { bold, cyan, gray, green, red } from 'kleur/colors'; | ||
import { bold, cyan, gray, green, yellow } from 'kleur/colors'; | ||
import prompts from 'prompts'; | ||
@@ -139,2 +139,7 @@ import { create } from './index.js'; | ||
console.log(' https://www.typescriptlang.org/tsconfig#checkJs'); | ||
} else if (options.template === 'skeletonlib') { | ||
const warning = yellow('▲'); | ||
console.log( | ||
`${warning} You chose to not add type checking, but TypeScript will still be installed in order to generate type definitions when building the library` | ||
); | ||
} | ||
@@ -141,0 +146,0 @@ |
@@ -241,2 +241,12 @@ { | ||
{ | ||
"name": "jsconfig.json", | ||
"include": [ | ||
"libskeleton" | ||
], | ||
"exclude": [ | ||
"typescript" | ||
], | ||
"contents": "{\n\t\"extends\": \"./.svelte-kit/tsconfig.json\",\n\t\"compilerOptions\": {\n\t\t\"esModuleInterop\": true,\n\t\t\"forceConsistentCasingInFileNames\": true,\n\t\t\"resolveJsonModule\": true,\n\t\t\"skipLibCheck\": true,\n\t\t\"sourceMap\": true,\n\t\t\"moduleResolution\": \"NodeNext\"\n\t}\n}\n" | ||
}, | ||
{ | ||
"name": "playwright.config.ts", | ||
@@ -243,0 +253,0 @@ "include": [ |
{ | ||
"name": "create-svelte", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"repository": { | ||
@@ -5,0 +5,0 @@ "type": "git", |
1075742
3356