@vercel/frameworks
Advanced tools
Comparing version 0.1.1 to 0.1.2-canary.0
@@ -59,3 +59,9 @@ [ | ||
} | ||
} | ||
}, | ||
"recommendedIntegrations": [ | ||
{ | ||
"id": "oac_5lUsiANun1DEzgLg0NZx5Es3", | ||
"dependencies": ["next-plugin-sentry", "next-sentry-source-maps"] | ||
} | ||
] | ||
}, | ||
@@ -62,0 +68,0 @@ { |
@@ -34,2 +34,6 @@ export interface FrameworkDetectionItem { | ||
}; | ||
recommendedIntegrations?: { | ||
id: string; | ||
dependencies: string[]; | ||
}[]; | ||
} |
{ | ||
"name": "@vercel/frameworks", | ||
"version": "0.1.1", | ||
"version": "0.1.2-canary.0", | ||
"main": "frameworks.json", | ||
@@ -17,3 +17,3 @@ "license": "UNLICENSED", | ||
}, | ||
"gitHead": "be24510f16047610cf5081a2439ec0976c2b60e6" | ||
"gitHead": "e18ff683b26b3a3aada69fd17c3e21ce2b04c9f3" | ||
} |
@@ -100,2 +100,21 @@ import Ajv from 'ajv'; | ||
}, | ||
recommendedIntegrations: { | ||
type: 'array', | ||
items: { | ||
type: 'object', | ||
required: ['id', 'dependencies'], | ||
additionalProperties: false, | ||
properties: { | ||
id: { | ||
type: 'string', | ||
}, | ||
dependencies: { | ||
type: 'array', | ||
items: { | ||
type: 'string', | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
@@ -102,0 +121,0 @@ }, |
416883
1074