Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup git dev #773

Merged
merged 4 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ frontend/package-lock.json

.vscode

.metals
.metals
2 changes: 1 addition & 1 deletion frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ yarn-error.log*
.vercel
../synbiohub-docker/

commitHash.txt
**/commitHash.txt
8 changes: 5 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider node customDev.js",
"dev1": "node customDev.js",
"build": "next build",
"dev": "git rev-parse HEAD > ./public/commitHash.txt; next dev -p 3333",
"devNextGen": "git rev-parse HEAD > ./public/commitHash.txt; NODE_OPTIONS=--openssl-legacy-provider next dev -p 3333",
"build": "git rev-parse HEAD > ./public/commitHash.txt; next build",
"buildNextGen": "git rev-parse HEAD > ./public/commitHash.txt; NODE_OPTIONS=--openssl-legacy-provider next build",
"testbuild": "NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "next start -p 3333",
"lint": "eslint '*/**/*.{js,jsx}'",
"lint.fix": "eslint '*/**/*.{js,jsx}' --fix",
Expand Down
1 change: 0 additions & 1 deletion frontend/public/commitHash.txt

This file was deleted.

Loading