File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 24
24
npm install && \
25
25
export NODE_ENV=production && \
26
26
echo " Generating production ready css" && \
27
+ npm install tailwindcss postcss autoprefixer && \
27
28
npx tailwindcss build -o ./src/index.css -c ./src/tailwind.config.js && \
28
29
rm package-* .json && \
29
30
rm -rf .git/ && \
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ if "%ip%"==%BUILD% (
26
26
npm install
27
27
echo " Building UI bundle"
28
28
set NODE_ENV = production
29
+ npm install tailwindcss postcss autoprefixer
29
30
npx tailwindcss build -o src/index.css -c src/tailwind.config.js
30
31
npm run build
31
32
echo " Moving react bundle to gitconvex-ui"
Original file line number Diff line number Diff line change 25
25
func main () {
26
26
// To get the current version of gitconvex
27
27
versionFlag := flag .Bool ("version" , false , "To get the current version of gitconvex" )
28
+ argFlag := flag .String ("port" , "" , "To define the port dynamically while starting gitconvex" )
28
29
flag .Parse ()
29
30
30
31
if * versionFlag == true {
@@ -113,7 +114,6 @@ func main() {
113
114
})
114
115
115
116
// Checking and Assigning port received from the command line ( --port args )
116
- argFlag := flag .String ("port" , "" , "To define the port dynamically while starting gitconvex" )
117
117
flag .Parse ()
118
118
119
119
if * argFlag != "" {
You can’t perform that action at this time.
0 commit comments