-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #668 from thecodacus/terminal-start-log-for-dev-se…
…rver added start message for dev server
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"scripts": { | ||
"deploy": "npm run build && wrangler pages deploy", | ||
"build": "remix vite:build", | ||
"dev": "remix vite:dev", | ||
"dev": "node pre-start.cjs; remix vite:dev", | ||
"test": "vitest --run", | ||
"test:watch": "vitest", | ||
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app", | ||
|
@@ -131,4 +131,4 @@ | |
"@typescript-eslint/utils": "^8.0.0-alpha.30" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const { commit } = require('./app/commit.json'); | ||
|
||
console.log(` | ||
★═══════════════════════════════════════★ | ||
B O L T . D I Y | ||
⚡️ Welcome ⚡️ | ||
★═══════════════════════════════════════★ | ||
`); | ||
console.log('📍 Current Commit Version:', commit); | ||
console.log('★═══════════════════════════════════════★'); |