Skip to content

Commit

Permalink
Feature/update-routing (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
myty authored Dec 28, 2022
1 parent bc1e914 commit 0c25a81
Show file tree
Hide file tree
Showing 39 changed files with 1,928 additions and 1,301 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"csharpier": {
"version": "0.20.0",
"version": "0.21.0",
"commands": [
"dotnet-csharpier"
]
Expand Down
3 changes: 2 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
auto-install-peers=true
strict-peer-dependencies=false
strict-peer-dependencies=false
use-node-version=16.18.1
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"editor.defaultFormatter": "csharpier.csharpier-vscode",
"editor.formatOnSave": true
},
"azureFunctions.deploySubpath": "src/lanco-incidents-func/bin/Release/net6.0/publish",
"azureFunctions.deploySubpath": "src/lanco-incidents-func/bin/Release/net7.0/publish",
"azureFunctions.preDeployTask": "publish (functions)",
"azureFunctions.projectLanguage": "C#",
"azureFunctions.projectRuntime": "~4",
Expand All @@ -27,5 +27,6 @@
"editor.defaultFormatter": "rome.rome"
},
"dotnet-test-explorer.autoWatch": true,
"dotnet-test-explorer.testProjectPath": "**/*Tests.@(csproj|vbproj|fsproj)"
"dotnet-test-explorer.testProjectPath": "**/*Tests.@(csproj|vbproj|fsproj)",
"typescript.tsdk": "node_modules\\typescript\\lib"
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"type": "func",
"dependsOn": "build (functions)",
"options": {
"cwd": "${workspaceFolder}/src/lanco-incidents-func/bin/Debug/net6.0"
"cwd": "${workspaceFolder}/src/lanco-incidents-func/bin/Debug/net7.0"
},
"command": "host start",
"isBackground": true,
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"license": "MIT",
"scripts": {
"build": "turbo run build",
"serve": "turbo run serve",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev",
Expand All @@ -13,8 +14,12 @@
},
"devDependencies": {
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"turbo": "^1.6.3"
"lint-staged": "^13.1.0",
"turbo": "^1.6.3",
"typescript": "~4.9.4"
},
"overrides": {
"typescript": "$typescript"
},
"volta": {
"node": "16.18.1"
Expand Down
Loading

1 comment on commit 0c25a81

@vercel
Copy link

@vercel vercel bot commented on 0c25a81 Dec 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.