create-weapp-vite 2.5.0 → 2.5.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/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- import { n as RECOMMENDED_SKILLS_INSTALL_COMMAND, t as createProject } from "./src-BHBI9E3O.js";
1
+ import { n as RECOMMENDED_SKILLS_INSTALL_COMMAND, t as createProject } from "./src-oqgVhWht.js";
2
2
  import logger from "@weapp-core/logger";
3
3
  import { fs } from "@weapp-core/shared/fs";
4
4
  import process from "node:process";
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- import { r as TemplateName, t as createProject } from "./src-BHBI9E3O.js";
1
+ import { r as TemplateName, t as createProject } from "./src-oqgVhWht.js";
2
2
  export { TemplateName, createProject };
@@ -6,13 +6,13 @@ import https from "node:https";
6
6
  import { spawn } from "node:child_process";
7
7
  import process from "node:process";
8
8
  //#region ../../packages-runtime/wevu/package.json
9
- var version$2 = "6.18.0";
9
+ var version$2 = "6.18.2";
10
10
  //#endregion
11
11
  //#region ../dashboard/package.json
12
- var version$1 = "6.18.0";
12
+ var version$1 = "6.18.2";
13
13
  //#endregion
14
14
  //#region ../weapp-vite/package.json
15
- var version = "6.18.0";
15
+ var version = "6.18.2";
16
16
  //#endregion
17
17
  //#region src/enums.ts
18
18
  let TemplateName = /* @__PURE__ */ function(TemplateName) {
@@ -152,7 +152,7 @@ const TEMPLATE_CATALOG = {
152
152
  merge: "^2.1.1",
153
153
  obug: "^2.1.3",
154
154
  pathe: "^2.0.3",
155
- postcss: "^8.5.16",
155
+ postcss: "^8.5.17",
156
156
  rolldown: "1.1.5",
157
157
  sass: "^1.101.0",
158
158
  stylelint: "^17.14.0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-weapp-vite",
3
3
  "type": "module",
4
- "version": "2.5.0",
4
+ "version": "2.5.2",
5
5
  "description": "create-weapp-vite",
6
6
  "author": "ice breaker <1324318532@qq.com>",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "weapp-vite-lib-template",
3
3
  "type": "module",
4
- "version": "9.0.0",
4
+ "version": "9.0.2",
5
5
  "private": true,
6
6
  "description": "weapp-vite 组件库(lib 模式)模板",
7
7
  "author": "ice breaker <1324318532@qq.com>",
@@ -10,17 +10,17 @@
10
10
  gap: 12rpx;
11
11
  align-items: center;
12
12
  justify-content: space-between;
13
- }
14
13
 
15
- &__label {
16
- font-size: 24rpx;
17
- font-weight: 600;
18
- color: #233a5e;
19
- }
14
+ .native-meter__label {
15
+ font-size: 24rpx;
16
+ font-weight: 600;
17
+ color: #233a5e;
18
+ }
20
19
 
21
- &__value {
22
- font-size: 23rpx;
23
- color: #5f6a80;
20
+ .native-meter__value {
21
+ font-size: 23rpx;
22
+ color: #5f6a80;
23
+ }
24
24
  }
25
25
 
26
26
  &__track {
@@ -35,17 +35,17 @@
35
35
  height: 100%;
36
36
  border-radius: 999rpx;
37
37
  transition: width 0.25s ease;
38
- }
39
38
 
40
- &__bar--neutral {
41
- background: linear-gradient(90deg, #5f7cff, #4d63dd);
42
- }
39
+ &--neutral {
40
+ background: linear-gradient(90deg, #5f7cff, #4d63dd);
41
+ }
43
42
 
44
- &__bar--success {
45
- background: linear-gradient(90deg, #0d9488, #22c55e);
46
- }
43
+ &--success {
44
+ background: linear-gradient(90deg, #0d9488, #22c55e);
45
+ }
47
46
 
48
- &__bar--danger {
49
- background: linear-gradient(90deg, #dc2626, #f97316);
47
+ &--danger {
48
+ background: linear-gradient(90deg, #dc2626, #f97316);
49
+ }
50
50
  }
51
51
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "weapp-vite-tailwindcss-vant-template",
3
3
  "type": "module",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "private": true,
6
6
  "description": "原生微信小程序 weapp-vite + tailwindcss 模板",
7
7
  "author": "ice breaker <1324318532@qq.com>",
@@ -21,10 +21,10 @@
21
21
  https://tw.icebreaker.top
22
22
  </view>
23
23
  <view>
24
- <van-button type="default" bind:tap="showDialog">Vant 按钮</van-button>
24
+ <van-button type="default" bind:click="showDialog">Vant 按钮</van-button>
25
25
  </view>
26
26
  <view>
27
- <van-button type="primary" plain bind:tap="goToLayouts">打开布局演示页</van-button>
27
+ <van-button type="primary" plain bind:click="goToLayouts">打开布局演示页</van-button>
28
28
  </view>
29
29
  </view>
30
30
  </view>
@@ -8,19 +8,19 @@
8
8
  <view class="mt-4 rounded-2xl bg-white p-5 shadow-sm">
9
9
  <view class="layout-actions">
10
10
  <view class="layout-actions__item">
11
- <van-button block type="primary" bind:tap="applyDefaultLayout">使用 default 布局</van-button>
11
+ <van-button block type="primary" bind:click="applyDefaultLayout">使用 default 布局</van-button>
12
12
  </view>
13
13
  <view class="layout-actions__item">
14
- <van-button block type="danger" plain bind:tap="applyAdminLayout">切到 admin 布局</van-button>
14
+ <van-button block type="danger" plain bind:click="applyAdminLayout">切到 admin 布局</van-button>
15
15
  </view>
16
16
  <view class="layout-actions__item">
17
- <van-button block type="default" plain bind:tap="clearLayout">关闭布局</van-button>
17
+ <van-button block type="default" plain bind:click="clearLayout">关闭布局</van-button>
18
18
  </view>
19
19
  <view class="layout-actions__item">
20
- <van-button block type="success" plain bind:tap="showState">查看当前状态</van-button>
20
+ <van-button block type="success" plain bind:click="showState">查看当前状态</van-button>
21
21
  </view>
22
22
  <view class="layout-actions__item">
23
- <van-button block type="default" bind:tap="backHome">返回首页</van-button>
23
+ <van-button block type="default" bind:click="backHome">返回首页</van-button>
24
24
  </view>
25
25
  </view>
26
26
  </view>