@vercel/build-utils 2.14.0 → 2.14.1-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/dist/index.js +43 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
@@ -29,5 +29,5 @@ ncc: Using typescript@4.3.4 (local user-provided)
|
|
29
29
|
2kB dist/main/detectors/filesystem.d.ts
|
30
30
|
4kB dist/main/fs/run-user-scripts.d.ts
|
31
31
|
10kB dist/main/types.d.ts
|
32
|
-
|
33
|
-
|
32
|
+
1231kB dist/main/index.js
|
33
|
+
1259kB [7510ms] - ncc 0.24.0
|
package/dist/index.js
CHANGED
@@ -28485,6 +28485,49 @@ exports.frameworks = [
|
|
28485
28485
|
},
|
28486
28486
|
],
|
28487
28487
|
},
|
28488
|
+
{
|
28489
|
+
name: 'Sanity',
|
28490
|
+
slug: 'sanity',
|
28491
|
+
demo: 'https://sanity-studio-template.vercel.app',
|
28492
|
+
logo: 'https://raw.githubusercontent.com/vercel/vercel/main/packages/frameworks/logos/sanity.svg',
|
28493
|
+
tagline: 'The structured content platform.',
|
28494
|
+
description: 'A Sanity Studio',
|
28495
|
+
website: 'https://www.sanity.io',
|
28496
|
+
envPrefix: 'SANITY_STUDIO_',
|
28497
|
+
detectors: {
|
28498
|
+
every: [
|
28499
|
+
{
|
28500
|
+
path: 'sanity.json',
|
28501
|
+
},
|
28502
|
+
],
|
28503
|
+
},
|
28504
|
+
settings: {
|
28505
|
+
installCommand: {
|
28506
|
+
placeholder: '`yarn install` or `npm install`',
|
28507
|
+
},
|
28508
|
+
buildCommand: {
|
28509
|
+
placeholder: '`npm run build` or `sanity build`',
|
28510
|
+
value: 'sanity build',
|
28511
|
+
},
|
28512
|
+
devCommand: {
|
28513
|
+
value: 'sanity start --port $PORT',
|
28514
|
+
},
|
28515
|
+
outputDirectory: {
|
28516
|
+
value: 'dist',
|
28517
|
+
},
|
28518
|
+
},
|
28519
|
+
dependency: '@sanity/cli',
|
28520
|
+
getOutputDirName: async () => 'dist',
|
28521
|
+
defaultRoutes: [
|
28522
|
+
{
|
28523
|
+
handle: 'filesystem',
|
28524
|
+
},
|
28525
|
+
{
|
28526
|
+
src: '/(.*)',
|
28527
|
+
dest: '/index.html',
|
28528
|
+
},
|
28529
|
+
],
|
28530
|
+
},
|
28488
28531
|
{
|
28489
28532
|
name: 'Other',
|
28490
28533
|
slug: null,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/build-utils",
|
3
|
-
"version": "2.14.0",
|
3
|
+
"version": "2.14.1-canary.0",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.js",
|
@@ -30,7 +30,7 @@
|
|
30
30
|
"@types/node-fetch": "^2.1.6",
|
31
31
|
"@types/semver": "6.0.0",
|
32
32
|
"@types/yazl": "^2.4.1",
|
33
|
-
"@vercel/frameworks": "0.6.0",
|
33
|
+
"@vercel/frameworks": "0.6.1-canary.0",
|
34
34
|
"@vercel/ncc": "0.24.0",
|
35
35
|
"aggregate-error": "3.0.1",
|
36
36
|
"async-retry": "1.2.3",
|
@@ -49,5 +49,5 @@
|
|
49
49
|
"typescript": "4.3.4",
|
50
50
|
"yazl": "2.4.3"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "04029013a60ed96c86ed369990cef6dd284d1724"
|
53
53
|
}
|