Skip to content

Commit

Permalink
fix packtracker exclude_assets
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Jun 5, 2019
1 parent 6295cb4 commit 014d320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if (process.env.RUN_ENV === 'PRODUCTION') {
project_token: '8adbb892-ee4a-4d6f-93bb-a03219fb6778',
upload: process.env.CI === 'true',
fail_build: true,
exclude_assets: name => ['antd.min.js', 'antd.min.css'].includes(name),
exclude_assets: name => !['antd.min.js', 'antd.min.css'].includes(name),
}),
);
});
Expand Down

0 comments on commit 014d320

Please sign in to comment.