Skip to content

Commit

Permalink
v0.33.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidprice committed Jun 11, 2021
1 parent 674f17d commit ce2d8df
Show file tree
Hide file tree
Showing 11 changed files with 5,322 additions and 4,981 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
.env
.netlify
.redwood
dev.db
dev.db*
dev.db-journal
dist
dist-babel
node_modules
yarn-error.log
web/public/mockServiceWorker.js
types
Binary file removed api/db/dev.db-journal
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ CREATE TABLE "Todo" (
"body" TEXT NOT NULL,
"status" TEXT NOT NULL DEFAULT 'off'
);

-- CreateIndex
CREATE UNIQUE INDEX "Todo.body_unique" ON "Todo"("body");
2 changes: 1 addition & 1 deletion api/db/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
datasource DS {
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
Expand Down
6 changes: 3 additions & 3 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"dependencies": {
"@redwoodjs/api": "^0.32.1-canary.8",
"@redwoodjs/api-server": "^0.28.3"
"@redwoodjs/api": "^0.33.3",
"@redwoodjs/api-server": "^0.33.3"
}
}
}
6 changes: 2 additions & 4 deletions graphql.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
const { getConfig } = require('@redwoodjs/internal')

const config = getConfig()
const { getPaths } = require('@redwoodjs/internal')

module.exports = {
schema: `http://${config.api.host}:${config.api.port}/graphql`,
schema: getPaths().generated.schema,
}
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@
"packages/*"
],
"devDependencies": {
"@redwoodjs/core": "^0.32.1-canary.8"
"@redwoodjs/core": "^0.33.3"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config"
},
"engines": {
"node": ">=14",
"yarn": ">=1.15"
},
"resolutions": {
"react": "17.0.1",
"react-dom": "17.0.1"
}
}
3 changes: 1 addition & 2 deletions redwood.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@
apiProxyPath = "/.netlify/functions"
[api]
port = 8911
schemaPath = "./api/db/schema.prisma"
[browser]
open = true
open = true
12 changes: 6 additions & 6 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
]
},
"dependencies": {
"@redwoodjs/auth": "^0.32.1-canary.8",
"@redwoodjs/forms": "^0.32.1-canary.8",
"@redwoodjs/router": "^0.32.1-canary.8",
"@redwoodjs/web": "^0.32.1-canary.8",
"@redwoodjs/auth": "^0.33.3",
"@redwoodjs/forms": "^0.33.3",
"@redwoodjs/router": "^0.33.3",
"@redwoodjs/web": "^0.33.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.1.0"
}
}
Loading

0 comments on commit ce2d8df

Please sign in to comment.