@vercel/static-build 2.11.2 → 2.11.3
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 +47 -0
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -7160,6 +7160,53 @@ var require_frameworks = __commonJS({
|
|
|
7160
7160
|
__reExport(frameworks_exports, require_types(), module2.exports);
|
|
7161
7161
|
var { readdir, readFile, unlink } = import_fs5.promises;
|
|
7162
7162
|
var frameworks2 = [
|
|
7163
|
+
{
|
|
7164
|
+
// A `Dockerfile.vercel` / `Containerfile.vercel` is an explicit opt-in to
|
|
7165
|
+
// deploy a project as a container, regardless of any other framework that
|
|
7166
|
+
// may also be detected. It is listed first so that framework detection
|
|
7167
|
+
// (which returns the first match in list order) selects it over everything
|
|
7168
|
+
// else — e.g. a Next.js app shipping a `Dockerfile.vercel` deploys as a
|
|
7169
|
+
// container, not via `@vercel/next`. Experimental for now, so it is only
|
|
7170
|
+
// detected when experimental frameworks are enabled
|
|
7171
|
+
// (`VERCEL_USE_EXPERIMENTAL_FRAMEWORKS`).
|
|
7172
|
+
name: "Container",
|
|
7173
|
+
slug: "container",
|
|
7174
|
+
experimental: true,
|
|
7175
|
+
runtimeFramework: true,
|
|
7176
|
+
logo: "https://api-frameworks.vercel.sh/framework-logos/container.svg",
|
|
7177
|
+
tagline: "Deploy any project as a container image built from a Dockerfile.",
|
|
7178
|
+
description: "A project deployed as a container image, built from a Dockerfile.vercel or Containerfile.vercel.",
|
|
7179
|
+
website: "https://docs.docker.com/reference/dockerfile/",
|
|
7180
|
+
useRuntime: { src: "<detect>", use: "@vercel/container" },
|
|
7181
|
+
detectors: {
|
|
7182
|
+
some: [
|
|
7183
|
+
{
|
|
7184
|
+
path: "Dockerfile.vercel"
|
|
7185
|
+
},
|
|
7186
|
+
{
|
|
7187
|
+
path: "Containerfile.vercel"
|
|
7188
|
+
}
|
|
7189
|
+
]
|
|
7190
|
+
},
|
|
7191
|
+
settings: {
|
|
7192
|
+
installCommand: {
|
|
7193
|
+
placeholder: "None",
|
|
7194
|
+
value: null
|
|
7195
|
+
},
|
|
7196
|
+
buildCommand: {
|
|
7197
|
+
placeholder: "None",
|
|
7198
|
+
value: null
|
|
7199
|
+
},
|
|
7200
|
+
devCommand: {
|
|
7201
|
+
placeholder: "None",
|
|
7202
|
+
value: null
|
|
7203
|
+
},
|
|
7204
|
+
outputDirectory: {
|
|
7205
|
+
placeholder: "None"
|
|
7206
|
+
}
|
|
7207
|
+
},
|
|
7208
|
+
getOutputDirName: async () => "public"
|
|
7209
|
+
},
|
|
7163
7210
|
{
|
|
7164
7211
|
name: "Blitz.js (Legacy)",
|
|
7165
7212
|
slug: "blitzjs",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/static-build",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index",
|
|
6
6
|
"homepage": "https://vercel.com/docs/build-step",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"ts-morph": "12.0.0",
|
|
17
17
|
"@vercel/gatsby-plugin-vercel-analytics": "1.0.11",
|
|
18
|
-
"@vercel/
|
|
19
|
-
"@vercel/
|
|
18
|
+
"@vercel/gatsby-plugin-vercel-builder": "2.2.23",
|
|
19
|
+
"@vercel/static-config": "3.4.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/aws-lambda": "8.10.64",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"semver": "7.5.2",
|
|
38
38
|
"tree-kill": "1.2.2",
|
|
39
39
|
"vitest": "2.0.3",
|
|
40
|
-
"@vercel/
|
|
40
|
+
"@vercel/build-utils": "13.32.1",
|
|
41
41
|
"@vercel/error-utils": "2.2.0",
|
|
42
|
-
"@vercel/
|
|
43
|
-
"@vercel/fs-detectors": "6.10.
|
|
42
|
+
"@vercel/frameworks": "3.30.0",
|
|
43
|
+
"@vercel/fs-detectors": "6.10.1",
|
|
44
44
|
"@vercel/routing-utils": "6.3.1"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|