We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c0e981 commit f1bb8b3Copy full SHA for f1bb8b3
packages/app/src/sandbox/eval/presets/create-react-app/utils.ts
@@ -5,7 +5,7 @@ import Manager from 'sandbox/eval/manager';
5
export async function isMinimalReactVersion(
6
version: string,
7
minimalVersion: string
8
-) {
+): Promise<boolean> {
9
if (version) {
10
const absoluteDependencies = await getAbsoluteDependencies({
11
'react-dom': version,
packages/common/src/types/index.ts
@@ -434,6 +434,11 @@ export type PackageJSON = {
434
description?: string;
435
keywords?: string[];
436
main?: string;
437
+ tasks?: {
438
+ scripts?: {
439
+ [command: string]: string;
440
+ };
441
442
dependencies?: {
443
[dep: string]: string;
444
};
0 commit comments