-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix github deploy workflow's default app-directory (#102)
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* ```jsonc | ||
* "tasks": { | ||
* // Builds the application. | ||
* "build": "deno run -A --config=deno.jsonc jsr:@udibo/[email protected].1/build", | ||
* "build": "deno run -A --config=deno.jsonc jsr:@udibo/[email protected].2/build", | ||
* // Builds the application in development mode. | ||
* "build-dev": "export APP_ENV=development NODE_ENV=development && deno task build", | ||
* // Builds the application in production mode. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
* ```jsonc | ||
* "tasks": { | ||
// Builds and runs the application in development mode, with hot reloading. | ||
* "dev": "export APP_ENV=development NODE_ENV=development && deno run -A --config=deno.jsonc jsr:@udibo/[email protected].1/dev", | ||
* "dev": "export APP_ENV=development NODE_ENV=development && deno run -A --config=deno.jsonc jsr:@udibo/[email protected].2/dev", | ||
* } | ||
* ``` | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,13 +103,13 @@ Node.js-like environment. | |
{ | ||
"tasks": { | ||
// Builds the application. | ||
"build": "deno run -A --config=deno.jsonc jsr:@udibo/[email protected].1/build", | ||
"build": "deno run -A --config=deno.jsonc jsr:@udibo/[email protected].2/build", | ||
// Builds the application in development mode. | ||
"build-dev": "export APP_ENV=development NODE_ENV=development && deno task build", | ||
// Builds the application in production mode. | ||
"build-prod": "export APP_ENV=production NODE_ENV=production && deno task build", | ||
// Builds and runs the application in development mode, with hot reloading. | ||
"dev": "export APP_ENV=development NODE_ENV=development && deno run -A --config=deno.jsonc jsr:@udibo/[email protected].1/dev", | ||
"dev": "export APP_ENV=development NODE_ENV=development && deno run -A --config=deno.jsonc jsr:@udibo/[email protected].2/dev", | ||
// Runs the application. Requires the application to be built first. | ||
"run": "deno run -A ./main.ts", | ||
// Runs the application in development mode. Requires the application to be built first. | ||
|
@@ -141,7 +141,7 @@ Node.js-like environment. | |
"imports": { | ||
"/": "./", | ||
"./": "./", | ||
"@udibo/react-app": "jsr:@udibo/[email protected].1", | ||
"@udibo/react-app": "jsr:@udibo/[email protected].2", | ||
"@std/assert": "jsr:@std/assert@1", | ||
"@std/log": "jsr:@std/log@0", | ||
"@std/path": "jsr:@std/path@1", | ||
|
@@ -549,13 +549,13 @@ on: | |
jobs: | ||
ci: | ||
name: CI | ||
uses: udibo/react-app/.github/workflows/[email protected].1 | ||
uses: udibo/react-app/.github/workflows/[email protected].2 | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
cd: | ||
name: CD | ||
needs: ci | ||
uses: udibo/react-app/.github/workflows/[email protected].1 | ||
uses: udibo/react-app/.github/workflows/[email protected].2 | ||
with: | ||
project: udibo-react-app-example | ||
``` | ||
|