Browse Source

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

* chore: fix eslint warning

* chore: fix bisheng log

* Update basic.md
pull/36229/head
afc163 2 years ago
committed by GitHub
parent
commit
eeedb876c0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .eslintrc.js
  2. 1
      components/table/__tests__/Table.rowSelection.test.js
  3. 7
      site/bisheng.config.js

2
.eslintrc.js

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

1
components/table/__tests__/Table.rowSelection.test.js

@ -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

7
site/bisheng.config.js

@ -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: {

Loading…
Cancel
Save