Browse Source

chore: fix packtracker token (#22942)

* chore: fix packtracker token

* change prior_commit

* 🗑️ remove packtracker webpack plugin
pull/22950/head
偏右 5 years ago
committed by GitHub
parent
commit
2f091e7dfb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      package.json
  2. 21
      webpack.config.js

1
package.json

@ -145,7 +145,6 @@
"@ant-design/colors": "^4.0.0", "@ant-design/colors": "^4.0.0",
"@ant-design/hitu": "^0.0.0-alpha.13", "@ant-design/hitu": "^0.0.0-alpha.13",
"@ant-design/tools": "^8.0.4", "@ant-design/tools": "^8.0.4",
"@packtracker/webpack-plugin": "^2.0.1",
"@qixian.cs/github-contributors-list": "^1.0.3", "@qixian.cs/github-contributors-list": "^1.0.3",
"@stackblitz/sdk": "^1.3.0", "@stackblitz/sdk": "^1.3.0",
"@types/classnames": "^2.2.8", "@types/classnames": "^2.2.8",

21
webpack.config.js

@ -1,7 +1,6 @@
/* eslint no-param-reassign: 0 */ /* eslint no-param-reassign: 0 */
// This config is for building dist files // This config is for building dist files
const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig'); const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig');
const PacktrackerPlugin = require('@packtracker/webpack-plugin');
const IgnoreEmitPlugin = require('ignore-emit-webpack-plugin'); const IgnoreEmitPlugin = require('ignore-emit-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const darkVars = require('./scripts/dark-vars'); const darkVars = require('./scripts/dark-vars');
@ -56,19 +55,6 @@ function processWebpackThemeConfig(themeConfig, theme, vars) {
const themeReg = new RegExp(`${theme}(.min)?\\.js(\\.map)?$`); const themeReg = new RegExp(`${theme}(.min)?\\.js(\\.map)?$`);
// ignore emit ${theme} entry js & js.map file // ignore emit ${theme} entry js & js.map file
config.plugins.push(new IgnoreEmitPlugin(themeReg)); config.plugins.push(new IgnoreEmitPlugin(themeReg));
// skip codesandbox ci
if (!process.env.CSB_REPO) {
// https://docs.packtracker.io/uploading-your-webpack-stats/webpack-plugin
config.plugins.push(
new PacktrackerPlugin({
project_token: '30c6a021-96c0-4d67-8bd2-0d2fcbd8962b',
upload: process.env.CI === 'true',
fail_build: false,
exclude_assets: name => ![`antd.${theme}.min.js`, `antd.${theme}.min.css`].includes(name),
}),
);
}
}); });
} }
@ -84,14 +70,7 @@ if (process.env.RUN_ENV === 'PRODUCTION') {
config.optimization.usedExports = true; config.optimization.usedExports = true;
// skip codesandbox ci // skip codesandbox ci
if (!process.env.CSB_REPO) { if (!process.env.CSB_REPO) {
// https://docs.packtracker.io/uploading-your-webpack-stats/webpack-plugin
config.plugins.push( config.plugins.push(
new PacktrackerPlugin({
project_token: '30c6a021-96c0-4d67-8bd2-0d2fcbd8962b',
upload: process.env.CI === 'true',
fail_build: false,
exclude_assets: name => !['antd.min.js', 'antd.min.css'].includes(name),
}),
new BundleAnalyzerPlugin({ new BundleAnalyzerPlugin({
analyzerMode: 'static', analyzerMode: 'static',
openAnalyzer: false, openAnalyzer: false,

Loading…
Cancel
Save