Skip to content

Commit

Permalink
fix: update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen authored Nov 16, 2024
1 parent 23e21bc commit e78f69e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ runs:
run: |
yarn add -DE @vercel/ncc
echo "Compiling plugin..."
yarn ncc build ${{ inputs.pluginEntry }} -m ${{ inputs.sourcemap == 'true' && '-s' || '' }} -o dist
yarn ncc build ${{ inputs.pluginEntry }} -e "**/*.test.ts" -m ${{ inputs.sourcemap == 'true' && '-s' || '' }} -o dist
echo "Compiling plugin types..."
yarn ncc build ${{ inputs.schemaPath }} -m -o plugin
yarn ncc build ${{ inputs.schemaPath }} -e "**/*.test.ts" -m -o plugin
- name: Replace __dirname with import.meta.dirname
if: ${{ inputs.treatAsEsm }}
Expand Down

0 comments on commit e78f69e

Please sign in to comment.