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

Update the npm run start to dev #3211

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 aim/web/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"zustand": "^4.1.1"
},
"scripts": {
"start": "react-app-rewired --max_old_space_size=4096 start",
"dev": "react-app-rewired --max_old_space_size=4096 start",
"build": "react-app-rewired --max_old_space_size=4096 build && gzipper c -i js,css,html ./build && node tasks/index-html-template-generator.js",
"test": "react-app-rewired test ",
"test:coverage": "react-app-rewired test --collectCoverage",
Expand Down
3 changes: 3 additions & 0 deletions aim/web/ui/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

from setuptools import setup

# The purpose of this file is to turn the static built files into a python package.
# When running locally, this will install the latest local build as the aim-ui package
# of the local build.

here = os.path.abspath(os.path.dirname(__file__))

Expand Down