@baic/yolk-cli 2.0.1-alpha.23 → 2.0.1-alpha.27

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.23",
3
+ "version": "2.0.1-alpha.27",
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": "0e6f29601f3de65002979234fea65bd7df4001f4"
44
+ "gitHead": "349ff80e84cfdd71b18c2fadd0fef1fe0e1dcbdb"
45
45
  }
@@ -34,5 +34,6 @@ yarn.lock
34
34
  *less.d.ts*
35
35
  *scss.d.ts*
36
36
  .eslintcache
37
+ .stylelintcache
37
38
  .vscode
38
39
  project.private.config.json
@@ -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(
@@ -21,6 +21,7 @@
21
21
  /.env.local
22
22
  coverage
23
23
  .eslintcache
24
+ .stylelintcache
24
25
  *less.d.ts*
25
26
  *scss.d.ts*
26
27
  .mfsu*
@@ -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 }}',
@@ -21,6 +21,7 @@
21
21
  /.env.local
22
22
  coverage
23
23
  .eslintcache
24
+ .stylelintcache
24
25
  *less.d.ts*
25
26
  *scss.d.ts*
26
27
  .mfsu*
@@ -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
- });