Skip to content

Commit

Permalink
feat(version): release 0.36.9 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Feb 23, 2024
1 parent 158ed71 commit 3d5f059
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG REACT_APP_CREATABLE_INSTANCE
COPY . /app
WORKDIR /app
RUN npm install -s
RUN npm run build
RUN NODE_OPTIONS="--max-old-space-size=4096" npm run build
RUN rm -rf /app/build/static/js/*.map
FROM nginx:alpine as production-stage
COPY --from=build-stage /app/nginx.conf /etc/nginx/conf.d/default.conf
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.36.8",
"version": "0.36.9",
"private": true,
"scripts": {
"dev": "GENERATE_SOURCEMAP=false react-scripts start",
Expand Down
1 change: 0 additions & 1 deletion src/components/CreateForms/CFStep1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import CFBridgeToggle from "../CFBridgeToggle/CFBridgeToggle";
import CFRobotButtons from "../CFRobotButtons/CFRobotButtons";
import CreateRobotFormLoader from "../CFLoader/CFLoader";
import CFRosDistros from "../CFRosDistros/CFRosDistros";
import CFGPUToggle from "../CFGPUToggle/CFGPUToggle";
import CFRobotName from "../CFRobotName/CFRobotName";
import useFunctions from "../../hooks/useFunctions";
import CFVDICount from "../CFVDICount/CFVDICount";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import EnvironmentObjectLabels from "../EnvironmentObjectLabels/EnvironmentObjectLabels";
import EnvironmentTitle from "../EnvironmentTitle/EnvironmentTitle";
import EnvironmentType from "../EnvironmentType/EnvironmentType";
import { ReactElement } from "react";
Expand Down
1 change: 0 additions & 1 deletion src/pages/DashboardsPage/OrgDashboard/OrgDashboard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import InformationWidget from "../../../components/InformationWidget/InformationWidget";
import RegionsWidget from "../../../components/RegionsWidget/RegionsWidget";
import { stringCapitalization } from "../../../functions/general.function";
import CountWidget from "../../../components/CountWidget/CountWidget";
import GeneralTable from "../../../components/Table/GeneralTable";
import { ReactElement } from "react";
import { OrgTableData } from "../../../controllers/OrgTableData";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import InformationWidget from "../../../components/InformationWidget/InformationWidget";
import RegionsWidget from "../../../components/RegionsWidget/RegionsWidget";
import { RegionTableData } from "../../../controllers/RegionTableData";
import CountWidget from "../../../components/CountWidget/CountWidget";
import GeneralTable from "../../../components/Table/GeneralTable";
import TourGuide from "../../../components/TourGuide/TourGuide";
import DashboardLayout from "../../../layouts/DashboardLayout/DashboardLayout";
Expand Down

0 comments on commit 3d5f059

Please sign in to comment.