@baic/yolk-cli 2.0.1-alpha.44 → 2.0.1-alpha.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baic/yolk-cli",
3
- "version": "2.0.1-alpha.44",
3
+ "version": "2.0.1-alpha.47",
4
4
  "author": "Baic <303394539@qq.com>",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "62ace64794b97b84c33536e17fae8237533f1f35"
44
+ "gitHead": "c42a4f5852fff656dc59de85120a0da0762a5c0b"
45
45
  }
@@ -1,3 +1,5 @@
1
1
  import { runApp } from 'ice';
2
2
 
3
+ import '@baic/yolk-mobile/lib/style/index.less';
4
+
3
5
  runApp();
@@ -43,7 +43,7 @@ const tabs: Record<
43
43
  export default () => {
44
44
  const keys = Object.keys(tabs);
45
45
  return (
46
- <Tabs defaultActiveKey={keys[4]}>
46
+ <Tabs defaultActiveKey={keys[0]}>
47
47
  {keys.map((key) => {
48
48
  const tab = tabs[key];
49
49
  if (_.isFunction(tab)) {
@@ -1,3 +1,5 @@
1
1
  import { runApp } from 'ice';
2
2
 
3
+ import '@baic/yolk-web/lib/style/index.less';
4
+
3
5
  runApp();
@@ -43,7 +43,7 @@ const tabs: Record<
43
43
  export default () => {
44
44
  const keys = Object.keys(tabs);
45
45
  return (
46
- <Tabs defaultActiveKey={keys[4]}>
46
+ <Tabs defaultActiveKey={keys[0]}>
47
47
  {keys.map((key) => {
48
48
  const tab = tabs[key];
49
49
  if (_.isFunction(tab)) {