Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Commit 2b7d2ef

Browse files
author
sw-yx
committed
remove dev fauna
1 parent 70ebc46 commit 2b7d2ef

File tree

11 files changed

+359
-299
lines changed

11 files changed

+359
-299
lines changed

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "netlify-dev-plugin",
33
"description": "Netlify development tools plugin",
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"author": "David Calavera @calavera",
66
"bugs": "https://github.com/netlify/netlify-dev-plugin/issues",
77
"dependencies": {

src/commands/dev/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ function startDevServer(settings, log, error) {
146146
});
147147

148148
server.start(function() {
149-
log(`${NETLIFYDEV} Server listening to`, settings.proxyPort);
149+
log(`\n${NETLIFYDEV} Server listening to`, settings.proxyPort);
150150
});
151151
return;
152152
}

src/functions-templates/js/fauna-graphql-dev/.netlify-function-template.js

-16
This file was deleted.

src/functions-templates/js/fauna-graphql-dev/fauna-graphql-dev.js

-43
This file was deleted.

src/functions-templates/js/fauna-graphql-dev/package.json

-26
This file was deleted.

src/functions-templates/js/fauna-graphql-dev/schema.graphql

-8
This file was deleted.

src/functions-templates/js/fauna-graphql-dev/sync-schema.js

-39
This file was deleted.

src/functions-templates/js/fauna-graphql/.netlify-function-template.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const execa = require("execa");
22
module.exports = {
33
name: "fauna-graphql",
4-
description: "GraphQL function using Fauna DB [Public Beta]",
4+
description: "GraphQL Backend using Fauna DB",
55
addons: [
66
{
77
addonName: "fauna",

src/functions-templates/js/fauna-graphql/fauna-graphql.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exports.handler = function(event, context, cb) {
2626

2727
/** standard creation of apollo-server executable schema */
2828
const link = createHttpLink({
29-
uri: "https://graphql.faunadb.com/graphql", // modify as you see fit
29+
uri: "https://graphql.fauna.com/graphql", // modify as you see fit
3030
fetch,
3131
headers
3232
});

src/functions-templates/js/fauna-graphql/sync-schema.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function createFaunaGraphQL() {
1515
.toString(); // name of your schema file
1616

1717
var options = {
18-
url: "https://graphql.faunadb.com/import",
18+
url: "https://graphql.fauna.com/import",
1919
method: "POST",
2020
body: dataString,
2121
auth: {

0 commit comments

Comments
 (0)