@antv/dumi-theme-antv 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/es/layout.js CHANGED
@@ -162,7 +162,6 @@ var Layout = function Layout(_ref) {
162
162
  meta = _processRedirect.meta,
163
163
  isDirect = _processRedirect.isDirect;
164
164
 
165
- console.log('Context', Context, 'calculate meta', meta);
166
165
  var repoUrl = repository.url,
167
166
  branch = repository.branch,
168
167
  platform = repository.platform;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/dumi-theme-antv",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "The official antv site theme of dumi",
5
5
  "files": [
6
6
  "es",
package/src/layout.tsx CHANGED
@@ -121,7 +121,6 @@ const Layout: React.FC<IRouteComponentProps> = ({ children, location }) => {
121
121
  } = Context;
122
122
 
123
123
  const { meta, isDirect } = processRedirect(Context, location);
124
- console.log('Context', Context, 'calculate meta', meta);
125
124
  const { url: repoUrl, branch, platform } = repository;
126
125
  const [menuCollapsed, setMenuCollapsed] = useState<boolean>(true);
127
126
  const isSiteMode = mode === 'site';