@vercel/build-utils 2.12.3-canary.44 → 2.12.3-canary.45
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/dist/index.js +38 -0
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -27108,6 +27108,44 @@ exports.frameworks = [
|
|
27108
27108
|
},
|
27109
27109
|
],
|
27110
27110
|
},
|
27111
|
+
{
|
27112
|
+
name: 'SolidStart',
|
27113
|
+
slug: 'solidstart',
|
27114
|
+
demo: 'https://solidstart.examples.vercel.com',
|
27115
|
+
logo: 'https://raw.githubusercontent.com/vercel/vercel/main/packages/frameworks/logos/solid.svg',
|
27116
|
+
tagline: 'Simple and performant reactivity for building user interfaces.',
|
27117
|
+
description: 'A Solid app, created with SolidStart.',
|
27118
|
+
website: 'https://solidjs.com',
|
27119
|
+
envPrefix: 'VITE_',
|
27120
|
+
detectors: {
|
27121
|
+
every: [
|
27122
|
+
{
|
27123
|
+
path: 'package.json',
|
27124
|
+
matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"solid-js":\\s*".+?"[^}]*}',
|
27125
|
+
},
|
27126
|
+
{
|
27127
|
+
path: 'package.json',
|
27128
|
+
matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"solid-start":\\s*".+?"[^}]*}',
|
27129
|
+
},
|
27130
|
+
],
|
27131
|
+
},
|
27132
|
+
settings: {
|
27133
|
+
installCommand: {
|
27134
|
+
placeholder: '`yarn install` or `npm install`',
|
27135
|
+
},
|
27136
|
+
buildCommand: {
|
27137
|
+
placeholder: '`npm run build` or `solid-start build`',
|
27138
|
+
value: 'solid-start build',
|
27139
|
+
},
|
27140
|
+
devCommand: {
|
27141
|
+
value: 'solid-start dev',
|
27142
|
+
},
|
27143
|
+
outputDirectory: {
|
27144
|
+
value: '.output',
|
27145
|
+
},
|
27146
|
+
},
|
27147
|
+
getOutputDirName: async () => '.output',
|
27148
|
+
},
|
27111
27149
|
{
|
27112
27150
|
name: 'Dojo',
|
27113
27151
|
slug: 'dojo',
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/build-utils",
|
3
|
-
"version": "2.12.3-canary.
|
3
|
+
"version": "2.12.3-canary.45",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.js",
|
7
|
-
"homepage": "https://github.com/vercel/vercel/blob/
|
7
|
+
"homepage": "https://github.com/vercel/vercel/blob/main/DEVELOPING_A_RUNTIME.md",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
10
|
"url": "https://github.com/vercel/vercel.git",
|
@@ -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.5.1-canary.
|
33
|
+
"@vercel/frameworks": "0.5.1-canary.18",
|
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": "ca433a467956e29b3e206034b68bd9de681145fe"
|
53
53
|
}
|