Skip to content

Commit

Permalink
chore: add minify flag to ncc build command
Browse files Browse the repository at this point in the history
    Enhance build process by including the --minify flag in ncc command for better optimization.
  • Loading branch information
gentlementlegen committed Oct 15, 2024
1 parent 601820a commit e8936e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
run: |
yarn add -DE @vercel/ncc
echo "Compiling plugin..."
yarn ncc build ${{ inputs.pluginEntry }} -m -o dist
yarn ncc build --minify ${{ inputs.pluginEntry }} -m -o dist
echo "Compiling plugin types..."
yarn ncc build ${{ inputs.schemaPath }} -m -o plugin
Expand Down

0 comments on commit e8936e8

Please sign in to comment.