Skip to content

Commit

Permalink
test: introduce codesandbox ci (#19721)
Browse files Browse the repository at this point in the history
* introduce codesandbox ci

* set skipLibCheck temporarilly

* remove packtracker temporarilly

* debug env
  • Loading branch information
yesmeck authored and afc163 committed Nov 16, 2019
1 parent d744df5 commit 26b9e1f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .codesandbox/ci.json
@@ -0,0 +1,3 @@
{
"sandboxes": ["wk04r016q8"]
}
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -42,6 +42,7 @@
"scripts": {
"api-collection": "antd-tools run api-collection",
"authors": "git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt",
"build": "node -e 'console.log(process.env)' && npm run compile && npm run dist",
"bundlesize": "bundlesize",
"check-commit": "node ./scripts/check-commit.js",
"compile": "antd-tools run compile",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Expand Up @@ -14,7 +14,8 @@
"noUnusedLocals": true,
"noImplicitAny": true,
"target": "es6",
"lib": ["dom", "es2017"]
"lib": ["dom", "es2017"],
"skipLibCheck": true
},
"exclude": ["node_modules", "lib", "es"]
}
10 changes: 0 additions & 10 deletions webpack.config.js
@@ -1,7 +1,6 @@
/* eslint no-param-reassign: 0 */
// This config is for building dist files
const getWebpackConfig = require('@ant-design/tools/lib/getWebpackConfig');
const PacktrackerPlugin = require('@packtracker/webpack-plugin');

const { webpack } = getWebpackConfig;

Expand Down Expand Up @@ -36,15 +35,6 @@ if (process.env.RUN_ENV === 'PRODUCTION') {
ignoreMomentLocale(config);
externalMoment(config);
addLocales(config);
// https://docs.packtracker.io/uploading-your-webpack-stats/webpack-plugin
config.plugins.push(
new PacktrackerPlugin({
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),
}),
);
});
}

Expand Down

0 comments on commit 26b9e1f

Please sign in to comment.