Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-app-donations
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-app-donations
Commits
c2b25ee6
Commit
c2b25ee6
authored
1 year ago
by
Stephanie Freitag
Browse files
Options
Downloads
Patches
Plain Diff
NOISSUE: upgrade deno and dependencies
parent
42d32bc3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
README.md
+1
-1
1 addition, 1 deletion
README.md
app/deps.ts
+4
-6
4 additions, 6 deletions
app/deps.ts
deno.json
+3
-5
3 additions, 5 deletions
deno.json
deno.lock
+363
-165
363 additions, 165 deletions
deno.lock
with
373 additions
and
179 deletions
.gitlab-ci.yml
+
1
−
1
View file @
c2b25ee6
...
...
@@ -47,7 +47,7 @@ variables:
## common steps
cache_lint_test
:
image
:
'
denoland/deno:alpine-1.
37.2
'
image
:
'
denoland/deno:alpine-1.
40.1
'
stage
:
'
test'
script
:
-
deno cache --lock=deno.lock app/deps.ts app/dev_deps.ts
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
c2b25ee6
FROM
denoland/deno:alpine-1.
36
.1
FROM
denoland/deno:alpine-1.
40
.1
# The port that your application listens to.
EXPOSE
8001
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
c2b25ee6
...
...
@@ -27,7 +27,7 @@ The backend for handling donation projects, including a GraphQL API for
### Setup
Install
[
`deno`
](
https://github.com/denoland/deno_install
)
in version 1.
36
.1
Install
[
`deno`
](
https://github.com/denoland/deno_install
)
in version 1.
40
.1
as well as
[
`Velociraptor`
](
https://velociraptor.run/docs/installation/
)
.
...
...
This diff is collapsed.
Click to expand it.
app/deps.ts
+
4
−
6
View file @
c2b25ee6
export
{
serve
}
from
"
https://deno.land/std@0.155.0/http/server.ts
"
;
export
{
createSchema
,
createYoga
,
}
from
"
https://cdn.skypack.dev/graphql-yoga@3.0.0-next.4
"
;
export
{
useResponseCache
}
from
"
https://cdn.skypack.dev/@graphql-yoga/plugin-response-cache@1.0.0-next.4
"
;
export
{
serve
}
from
"
https://deno.land/std@0.156.0/http/server.ts
"
;
export
{
createSchema
,
createYoga
}
from
"
npm:graphql-yoga@3.0.0
"
;
export
{
useResponseCache
}
from
"
npm:@graphql-yoga/plugin-response-cache@1.0.0
"
;
export
{
GraphQLError
}
from
"
npm:graphql@16.8.1
"
;
export
{
Parser
}
from
"
https://deno.land/x/html_parser@v0.1.3/src/mod.ts
"
;
This diff is collapsed.
Click to expand it.
deno.json
+
3
−
5
View file @
c2b25ee6
...
...
@@ -19,10 +19,8 @@
}
},
"fmt"
:
{
"files"
:
{
"exclude"
:
[
"*.md"
]
}
"exclude"
:
[
"*.md"
]
}
}
This diff is collapsed.
Click to expand it.
deno.lock
+
363
−
165
View file @
c2b25ee6
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment