Skip to content

Commit 46962d3

Browse files
committed
Connectors for version v7.3.0
1 parent af471b7 commit 46962d3

File tree

78 files changed

+189
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+189
-89
lines changed

edgio-analogjs-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-analogjs-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-analogjs-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/analogjs",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"description": "Deploy analogjs apps to Edgio",
55
"license": "Apache-2.0",
66
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
@@ -27,7 +27,7 @@
2727
"directory": "dist"
2828
},
2929
"devDependencies": {
30-
"@edgio/core": "^7.2.8",
30+
"@edgio/core": "^7.3.0",
3131
"@types/node": "^14.0.9"
3232
}
3333
}

edgio-angular-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-angular-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-angular-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@edgio/angular",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"license": "Apache-2.0",
55
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
66
"devDependencies": {
7-
"@edgio/core": "^7.2.8",
7+
"@edgio/core": "^7.3.0",
88
"@types/cross-spawn": "^6.0.2"
99
},
1010
"scripts": {

edgio-astro-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
astro: {
1721
// The path of the standalone server that runs Astro SSR
1822
// The dependencies for this file are automatically bundled

edgio-astro-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-astro-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/astro",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"description": "Deploy Astro apps to Edgio",
55
"license": "Apache-2.0",
66
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
@@ -27,7 +27,7 @@
2727
"directory": "dist"
2828
},
2929
"devDependencies": {
30-
"@edgio/core": "^7.2.8",
30+
"@edgio/core": "^7.3.0",
3131
"@types/node": "^14.0.9"
3232
},
3333
"dependencies": {

edgio-astro-connector/src/dev.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default async function dev() {
1010
await new DeploymentBuilder().watchServiceWorker(SW_SRC, SW_DEST)
1111
return createDevServer({
1212
label: 'Astro',
13-
command: port => `npx astro dev --port ${port}`,
13+
command: port => `npx astro dev --port ${port} --host`,
1414
ready: [/Local/i],
1515
})
1616
}

edgio-express-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
express: {
1721
// The main entry point for your app, which exports an instance of express app.
1822
// This file and its dependencies will be bundled into a single file for serverless deployment.

edgio-express-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-express-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/express",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"license": "Apache-2.0",
55
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
66
"scripts": {
@@ -53,7 +53,7 @@
5353
"directory": "dist"
5454
},
5555
"devDependencies": {
56-
"@edgio/core": "^7.2.8",
56+
"@edgio/core": "^7.3.0",
5757
"@types/node": "^14.0.9",
5858
"@vercel/ncc": "^0.34.0",
5959
"@vercel/nft": "^0.21.0",

edgio-fastboot-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-fastboot-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-fastboot-connector/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/fastboot",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"license": "Apache-2.0",
55
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
66
"scripts": {

edgio-frontity-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-frontity-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-frontity-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/frontity",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"license": "Apache-2.0",
55
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
66
"dependencies": {
@@ -62,7 +62,7 @@
6262
"directory": "dist"
6363
},
6464
"devDependencies": {
65-
"@edgio/core": "^7.2.8",
65+
"@edgio/core": "^7.3.0",
6666
"@types/node": "^14.0.9",
6767
"@types/workbox-webpack-plugin": "^5.1.5"
6868
}

edgio-gatsby-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-gatsby-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-gatsby-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@edgio/gatsby",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"license": "Apache-2.0",
55
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
66
"devDependencies": {
7-
"@edgio/core": "^7.2.8"
7+
"@edgio/core": "^7.3.0"
88
},
99
"scripts": {
1010
"build": "rm -rf ./dist; mkdir ./dist; cp -r package.json README.md default-app ./dist; tsc; cp -r stage/gatsby/src/* dist",

edgio-hexo-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-hexo-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-hexo-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/hexo",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"description": "Deploy Hexo apps to Edgio",
55
"license": "Apache-2.0",
66
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
@@ -27,7 +27,7 @@
2727
"directory": "dist"
2828
},
2929
"devDependencies": {
30-
"@edgio/core": "^7.2.8",
30+
"@edgio/core": "^7.3.0",
3131
"@types/node": "^14.0.9"
3232
},
3333
"dependencies": {

edgio-mkdocs-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-mkdocs-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-mkdocs-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/mkdocs",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"description": "Deploy MkDocs apps to Edgio",
55
"license": "Apache-2.0",
66
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
@@ -27,7 +27,7 @@
2727
"directory": "dist"
2828
},
2929
"devDependencies": {
30-
"@edgio/core": "^7.2.8",
30+
"@edgio/core": "^7.3.0",
3131
"@types/node": "^14.0.9"
3232
}
3333
}

edgio-next-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
next: {
1721
// Output sourcemaps so that stack traces have original source filenames and line numbers when tailing
1822
// the logs in the Edgio developer console.

edgio-next-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-next-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/next",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"license": "Apache-2.0",
55
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
66
"dependencies": {
@@ -21,7 +21,7 @@
2121
"webpack-sources": "^2.2.0"
2222
},
2323
"devDependencies": {
24-
"@edgio/core": "^7.2.8",
24+
"@edgio/core": "^7.3.0",
2525
"@types/cross-spawn": "^6.0.2",
2626
"@types/fs-extra": "^8.1.1",
2727
"@types/jscodeshift": "^0.11.2",

edgio-nitropack-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

edgio-nitropack-connector/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

edgio-nitropack-connector/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@edgio/nitropack",
3-
"version": "7.2.8",
3+
"version": "7.3.0",
44
"description": "Deploy nitropack apps to Edgio",
55
"license": "Apache-2.0",
66
"edgio-publish-to-repo": "edgio-docs/edgio-connectors",
@@ -27,7 +27,7 @@
2727
"directory": "dist"
2828
},
2929
"devDependencies": {
30-
"@edgio/core": "^7.2.8",
30+
"@edgio/core": "^7.3.0",
3131
"@types/node": "^14.0.9"
3232
}
3333
}

edgio-nodejs-connector/default-app/all/edgio.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = {
1313
// Overrides the default path to the routes file. The path should be relative to the root of your app.
1414
// routes: 'routes.js',
1515

16+
// When set to true or omitted entirely, Edgio includes the deployment number in the cache key,
17+
// effectively purging the cache each time you deploy.
18+
// purgeCacheOnDeploy: false,
19+
1620
// If you need to proxy some URLs to an origin instead of your Next.js app, you can configure the origins here:
1721
// origins: [
1822
// {

0 commit comments

Comments
 (0)