Skip to content

Commit

Permalink
Update project dependencies and tweak Noop-specific configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
derekwolpert committed Jan 11, 2024
1 parent f3cee56 commit 1f95c50
Show file tree
Hide file tree
Showing 10 changed files with 1,198 additions and 1,027 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
uses: actions/checkout@v4

- name: Install NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Cache NPM
id: cache-npm
Expand Down
5 changes: 3 additions & 2 deletions .noop/blueprint.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Nodejs Vue Template Todo App
components:
- name: TodoApi
type: service
image: node:18-alpine
image: node:20-alpine
root: api-service
port: 3000
build:
Expand Down Expand Up @@ -32,7 +33,7 @@ components:

- name: TodoWebsite
type: static
image: node:18-alpine
image: node:20-alpine
root: website-static
hosting:
spa: true
Expand Down
File renamed without changes.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ To create and run an instance of this Template [install Workshop](https://noop.d

Once your Application is deployed (locally in Workshop or in Cloud), visit the associated endpoint to interact with the example todo list app.

-----
---

This repo uses:

| Software | Version |
|------------|----------------|
| Noop | v2.0.111 |
| Node | v20.7.0 |
| Express | 5.0.0-beta.1 |
| Vue | 3.2.37 |
| Software | Version |
| -------- | ------------- |
| Node | v20.x.x |
| Express | v5.0.0-beta.1 |
| Vue | v3.4.10 |
1,174 changes: 595 additions & 579 deletions api-service/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions api-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"author": "Noop Inc <[email protected]>",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.470.0",
"@aws-sdk/client-s3": "^3.470.0",
"@aws-sdk/lib-dynamodb": "^3.470.0",
"@aws-sdk/lib-storage": "^3.470.0",
"@aws-sdk/client-dynamodb": "^3.490.0",
"@aws-sdk/client-s3": "^3.490.0",
"@aws-sdk/lib-dynamodb": "^3.490.0",
"@aws-sdk/lib-storage": "^3.490.0",
"cors": "^2.8.5",
"express": "^5.0.0-beta.1",
"mime-types": "^2.1.35",
Expand Down
Loading

0 comments on commit 1f95c50

Please sign in to comment.