Commit a35f6771 authored by 邓晓峰's avatar 邓晓峰

fix: test release

parent 1e812dc9
...@@ -21,7 +21,9 @@ const DeviceTree = (props) => { ...@@ -21,7 +21,9 @@ const DeviceTree = (props) => {
const [treeData, setTreeData] = useState([]); const [treeData, setTreeData] = useState([]);
const [params, setParams] = useState({}); const [params, setParams] = useState({});
const noop = () => {}; const noop = () => {
console.log('noop');
};
useEffect(() => { useEffect(() => {
const param = { const param = {
pageIndex: serviceParams.pageIndex || 1, pageIndex: serviceParams.pageIndex || 1,
......
...@@ -132,6 +132,7 @@ async function release() { ...@@ -132,6 +132,7 @@ async function release() {
// eslint-disable-next-line consistent-return // eslint-disable-next-line consistent-return
pkgs.forEach((pkg, index) => { pkgs.forEach((pkg, index) => {
const pkgMap = locMap[pkg]; const pkgMap = locMap[pkg];
console.log('pkgMap', pkgMap);
const [p, shortName] = pkgMap.split('/'); const [p, shortName] = pkgMap.split('/');
const pkgPath = join(cwd, 'packages', p, shortName.replace('pro-', '')); const pkgPath = join(cwd, 'packages', p, shortName.replace('pro-', ''));
// eslint-disable-next-line global-require,import/no-dynamic-require // eslint-disable-next-line global-require,import/no-dynamic-require
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment