Skip to content

Commit

Permalink
Create build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH committed Aug 26, 2024
1 parent 641cde9 commit df7ed99
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

# Set the build directory
BUILD_DIR="build"

# Set the source directory
SRC_DIR="src"

# Set the TypeScript compiler options
TSC_OPTIONS="-p $SRC_DIR --outDir $BUILD_DIR --target es6 --moduleResolution node --esModuleInterop --allowSyntheticDefaultImports"

# Clean the build directory
echo "Cleaning build directory..."
rm -rf $BUILD_DIR

# Compile the TypeScript code
echo "Compiling TypeScript code..."
npx tsc $TSC_OPTIONS

# Copy static assets
echo "Copying static assets..."
cp -r $SRC_DIR/assets $BUILD_DIR/assets

# Create a production-ready build
echo "Creating production-ready build..."
npx webpack --config webpack.config.js --mode production

# Output a success message
echo "Build complete!"

0 comments on commit df7ed99

Please sign in to comment.