chore: fix eslint warning and bisheng terminal log (#36220)

* chore: fix eslint warning

* chore: fix bisheng log

* Update basic.md
This commit is contained in:
afc163 2022-06-24 16:40:48 +08:00 committed by GitHub
parent d733de8f14
commit eeedb876c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -17,7 +17,7 @@ module.exports = {
},
settings: {
react: {
version: '16.9',
version: 'detect',
},
polyfills: ['Promise', 'URL'],
},

View File

@ -326,7 +326,6 @@ describe('Table.rowSelection', () => {
});
expect(onChange).toHaveBeenLastCalledWith([3, 0, 1, 2]);
fireEvent.click(allElement());
console.log(baseElement.innerHTML);
expect(onChange).toHaveBeenLastCalledWith([]);
// Reset last select key when select all

View File

@ -27,8 +27,10 @@ function alertBabelConfig(rules) {
});
}
const port = process.env.DEV_PORT || 8001;
module.exports = {
port: 8001,
port,
hash: true,
source: {
components: './components',
@ -192,8 +194,9 @@ module.exports = {
},
devServerConfig: {
public: process.env.DEV_HOST || 'localhost',
public: `${process.env.DEV_HOST || 'localhost'}:${port}`,
disableHostCheck: !!process.env.DEV_HOST,
publicPath: '/_site',
},
htmlTemplateExtraData: {