Skip to content

Commit 388e2bb

Browse files
committed
Update @udibo/react-app to 0.24.2
1 parent 7b1e0a7 commit 388e2bb

File tree

4 files changed

+28
-19
lines changed

4 files changed

+28
-19
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
jobs:
88
ci:
99
name: CI
10-
uses: udibo/react-app/.github/workflows/[email protected].0
10+
uses: udibo/react-app/.github/workflows/[email protected].2
1111
secrets:
1212
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
1313
cd:
1414
name: CD
1515
needs: ci
16-
uses: udibo/react-app/.github/workflows/[email protected].0
16+
uses: udibo/react-app/.github/workflows/[email protected].2
1717
with:
1818
project: udibo-react-app-example

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"request": "launch",
66
"name": "build",
77
"type": "node",
8-
"program": "jsr:@udibo/[email protected].1/build",
8+
"program": "jsr:@udibo/[email protected].2/build",
99
"cwd": "${workspaceFolder}",
1010
"runtimeExecutable": "deno",
1111
"runtimeArgs": [
@@ -60,7 +60,7 @@
6060
"request": "launch",
6161
"name": "dev",
6262
"type": "node",
63-
"program": "jsr:@udibo/[email protected].1/dev",
63+
"program": "jsr:@udibo/[email protected].2/dev",
6464
"cwd": "${workspaceFolder}",
6565
"runtimeExecutable": "deno",
6666
"runtimeArgs": [

deno.jsonc

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"tasks": {
33
// Builds the application.
4-
"build": "deno run -A --config=deno.jsonc jsr:@udibo/[email protected].1/build",
4+
"build": "deno run -A --config=deno.jsonc jsr:@udibo/[email protected].2/build",
55
// Builds the application in development mode.
66
"build-dev": "export APP_ENV=development NODE_ENV=development && deno task build",
77
// Builds the application in production mode.
88
"build-prod": "export APP_ENV=production NODE_ENV=production && deno task build",
99
// Builds and runs the application in development mode, with hot reloading.
10-
"dev": "export APP_ENV=development NODE_ENV=development && deno run -A --config=deno.jsonc jsr:@udibo/[email protected].1/dev",
10+
"dev": "export APP_ENV=development NODE_ENV=development && deno run -A --config=deno.jsonc jsr:@udibo/[email protected].2/dev",
1111
// Runs the application. Requires the application to be built first.
1212
"run": "deno run -A ./main.ts",
1313
// Runs the application in development mode. Requires the application to be built first.
@@ -31,15 +31,20 @@
3131
},
3232
"nodeModulesDir": true,
3333
"lint": {
34-
"exclude": ["public/build", "routes/_main.ts", "routes/_main.tsx"]
34+
"exclude": [
35+
"coverage",
36+
"public/build",
37+
"routes/_main.ts",
38+
"routes/_main.tsx"
39+
]
3540
},
3641
"fmt": {
37-
"exclude": ["public/build"]
42+
"exclude": ["coverage", "public/build"]
3843
},
3944
"imports": {
4045
"/": "./",
4146
"./": "./",
42-
"@udibo/react-app": "jsr:@udibo/react-app@0.22",
47+
"@udibo/react-app": "jsr:@udibo/react-app@0.24.2",
4348
"@std/assert": "jsr:@std/assert@1",
4449
"@std/log": "jsr:@std/log@0",
4550
"@std/path": "jsr:@std/path@1",

deno.lock

Lines changed: 14 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)