@baic/yolk-cli 2.0.1-alpha.22 → 2.0.1-alpha.26

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.22",
3
+ "version": "2.0.1-alpha.26",
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": "7b7722ccf2814b5e4f6e3ece0985807863e1493e"
44
+ "gitHead": "a5608662588ea19893905b81587f3aa0448867cc"
45
45
  }
@@ -1,3 +1,5 @@
1
- const config = require('@baic/yolk-taro/lib/babel.config');
1
+ const {
2
+ babelConfig
3
+ } = require('@baic/yolk-taro');
2
4
 
3
- module.exports = config;
5
+ module.exports = babelConfig;
@@ -1,5 +1,5 @@
1
1
  import path from 'path';
2
- import config from '@baic/yolk-taro/lib/config';
2
+ import { config } from '@baic/yolk-taro';
3
3
 
4
4
  export default (merge) =>
5
5
  merge(
@@ -1,4 +1,4 @@
1
- import defineConfig from '@baic/yolk-umi-mobile/lib/define-config';
1
+ import { defineConfig } from '@baic/yolk-umi-mobile';
2
2
 
3
3
  export default defineConfig({
4
4
  title: '{{ projectName }}',
@@ -0,0 +1,6 @@
1
+ import { defineConfig } from '@baic/yolk-umi-web';
2
+
3
+ export default defineConfig({
4
+ title: '{{ projectName }}',
5
+ publicPath: '/',
6
+ });
@@ -1,6 +0,0 @@
1
- import defineConfig from '@baic/yolk-umi-web/lib/define-config';
2
-
3
- export default defineConfig({
4
- title: 'web',
5
- publicPath: '/',
6
- });