Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Update run-action.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Mar 26, 2022
1 parent d557557 commit 89f0816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run-action.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const pluginTitle = `${author}/${name}`;
const target = RunTarget.mainJs(path.resolve('node_modules/tw5-plugin-packer/action.yml'));
const options = RunOptions.create()
.setInputs({
minify: process.env.CI,
minify: process.env.CI === undefined ? false : true,
source: [`dist/plugins/${pluginTitle}`],
output: 'dist/out',
'uglifyjs-options': '{ "warnings": false, "ie8": false, "safari10": false }',
Expand Down

0 comments on commit 89f0816

Please sign in to comment.