Skip to content

Commit

Permalink
fix: correct order of ncc build command options
Browse files Browse the repository at this point in the history
Reorder the parameters in the yarn ncc build command to ensure the minify flag (-m) is placed correctly. This change ensures proper functionality in the build process.
  • Loading branch information
gentlementlegen committed Oct 10, 2024
1 parent 56e9f71 commit 0bf5f26
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 @@ -56,7 +56,7 @@ runs:
shell: bash
run: |
yarn add -DE @vercel/ncc
yarn ncc build -m ${{ inputs.plugin-entry }}
yarn ncc build ${{ inputs.plugin-entry }} -m
- name: Update manifest configuration JSON
uses: actions/github-script@v7
Expand Down

0 comments on commit 0bf5f26

Please sign in to comment.