@vercel/static-build 1.0.39 → 1.0.40
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 +69 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -209248,20 +209248,19 @@ const { readdir, readFile, unlink } = fs_1.promises;
|
|
|
209248
209248
|
*/
|
|
209249
209249
|
exports.frameworks = [
|
|
209250
209250
|
{
|
|
209251
|
-
name: 'Blitz.js',
|
|
209251
|
+
name: 'Blitz.js (Legacy)',
|
|
209252
209252
|
slug: 'blitzjs',
|
|
209253
209253
|
demo: 'https://blitz-template.vercel.app',
|
|
209254
209254
|
logo: 'https://api-frameworks.vercel.sh/framework-logos/blitz.svg',
|
|
209255
209255
|
tagline: 'Blitz.js: The Fullstack React Framework',
|
|
209256
|
-
description: 'A brand new Blitz.js app - the result of running `npx blitz new`.',
|
|
209256
|
+
description: 'A brand new Blitz.js app - the result of running `npx blitz@0.45.4 new`.',
|
|
209257
209257
|
website: 'https://blitzjs.com',
|
|
209258
209258
|
envPrefix: 'NEXT_PUBLIC_',
|
|
209259
209259
|
useRuntime: { src: 'package.json', use: '@vercel/next' },
|
|
209260
209260
|
detectors: {
|
|
209261
209261
|
every: [
|
|
209262
209262
|
{
|
|
209263
|
-
path: '
|
|
209264
|
-
matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"blitz":\\s*".+?"[^}]*}',
|
|
209263
|
+
path: 'blitz.config.(js|ts)',
|
|
209265
209264
|
},
|
|
209266
209265
|
],
|
|
209267
209266
|
},
|
|
@@ -210880,6 +210879,72 @@ exports.frameworks = [
|
|
|
210880
210879
|
dependency: 'vite',
|
|
210881
210880
|
getOutputDirName: async () => 'dist',
|
|
210882
210881
|
},
|
|
210882
|
+
{
|
|
210883
|
+
name: 'VitePress',
|
|
210884
|
+
slug: 'vitepress',
|
|
210885
|
+
demo: 'https://vitepress-starter-template.vercel.app/',
|
|
210886
|
+
logo: 'https://api-frameworks.vercel.sh/framework-logos/vite.svg',
|
|
210887
|
+
tagline: "VitePress is VuePress' little brother, built on top of Vite.",
|
|
210888
|
+
description: 'VuePress on top of Vite',
|
|
210889
|
+
website: 'https://vitepress.vuejs.org/',
|
|
210890
|
+
detectors: {
|
|
210891
|
+
every: [
|
|
210892
|
+
{
|
|
210893
|
+
path: 'package.json',
|
|
210894
|
+
matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*vitepress:\\s*".+?"[^}]*}',
|
|
210895
|
+
},
|
|
210896
|
+
],
|
|
210897
|
+
},
|
|
210898
|
+
settings: {
|
|
210899
|
+
installCommand: {
|
|
210900
|
+
placeholder: '`yarn install`, `pnpm install`, or `npm install`',
|
|
210901
|
+
},
|
|
210902
|
+
buildCommand: {
|
|
210903
|
+
placeholder: '`npm run build` or `vitepress build docs`',
|
|
210904
|
+
value: 'vitepress build docs',
|
|
210905
|
+
},
|
|
210906
|
+
devCommand: {
|
|
210907
|
+
value: 'vitepress dev docs --port $PORT',
|
|
210908
|
+
},
|
|
210909
|
+
outputDirectory: {
|
|
210910
|
+
value: 'docs/.vitepress/dist',
|
|
210911
|
+
},
|
|
210912
|
+
},
|
|
210913
|
+
getOutputDirName: async () => '.vitepress/dist',
|
|
210914
|
+
},
|
|
210915
|
+
{
|
|
210916
|
+
name: 'VuePress',
|
|
210917
|
+
slug: 'vuepress',
|
|
210918
|
+
demo: 'https://vuepress-starter-template.vercel.app',
|
|
210919
|
+
logo: 'https://api-frameworks.vercel.sh/framework-logos/vuepress.png',
|
|
210920
|
+
tagline: 'Vue-powered Static Site Generator',
|
|
210921
|
+
description: 'Vue-powered Static Site Generator',
|
|
210922
|
+
website: 'https://vuepress.vuejs.org/',
|
|
210923
|
+
detectors: {
|
|
210924
|
+
every: [
|
|
210925
|
+
{
|
|
210926
|
+
path: 'package.json',
|
|
210927
|
+
matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*vuepress:\\s*".+?"[^}]*}',
|
|
210928
|
+
},
|
|
210929
|
+
],
|
|
210930
|
+
},
|
|
210931
|
+
settings: {
|
|
210932
|
+
installCommand: {
|
|
210933
|
+
placeholder: '`yarn install`, `pnpm install`, or `npm install`',
|
|
210934
|
+
},
|
|
210935
|
+
buildCommand: {
|
|
210936
|
+
placeholder: '`npm run build` or `vuepress build src`',
|
|
210937
|
+
value: 'vuepress build src',
|
|
210938
|
+
},
|
|
210939
|
+
devCommand: {
|
|
210940
|
+
value: 'vuepress dev src --port $PORT',
|
|
210941
|
+
},
|
|
210942
|
+
outputDirectory: {
|
|
210943
|
+
value: 'src/.vuepress/dist',
|
|
210944
|
+
},
|
|
210945
|
+
},
|
|
210946
|
+
getOutputDirName: async () => 'src/.vuepress/dist',
|
|
210947
|
+
},
|
|
210883
210948
|
{
|
|
210884
210949
|
name: 'Parcel',
|
|
210885
210950
|
slug: 'parcel',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/static-build",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index",
|
|
6
6
|
"homepage": "https://vercel.com/docs/build-step",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@types/ms": "0.7.31",
|
|
37
37
|
"@types/node-fetch": "2.5.4",
|
|
38
38
|
"@types/promise-timeout": "1.3.0",
|
|
39
|
-
"@vercel/build-utils": "5.
|
|
40
|
-
"@vercel/frameworks": "1.1.
|
|
39
|
+
"@vercel/build-utils": "5.6.0",
|
|
40
|
+
"@vercel/frameworks": "1.1.13",
|
|
41
41
|
"@vercel/ncc": "0.24.0",
|
|
42
42
|
"@vercel/routing-utils": "2.1.3",
|
|
43
43
|
"@vercel/static-config": "2.0.6",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"tree-kill": "1.2.2",
|
|
51
51
|
"typescript": "4.3.4"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "a19447f9cdc8c7be8aa3646dfb441dd9469d2ed3"
|
|
54
54
|
}
|