create-weapp-vite 2.3.45 → 2.3.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/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- import { n as RECOMMENDED_SKILLS_INSTALL_COMMAND, t as createProject } from "./src-D7aodWR3.js";
1
+ import { n as RECOMMENDED_SKILLS_INSTALL_COMMAND, t as createProject } from "./src-BtYHexpT.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-D7aodWR3.js";
1
+ import { r as TemplateName, t as createProject } from "./src-BtYHexpT.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.16.35";
9
+ var version$2 = "6.16.40";
10
10
  //#endregion
11
11
  //#region ../dashboard/package.json
12
- var version$1 = "6.16.35";
12
+ var version$1 = "6.16.40";
13
13
  //#endregion
14
14
  //#region ../weapp-vite/package.json
15
- var version = "6.16.35";
15
+ var version = "6.16.40";
16
16
  //#endregion
17
17
  //#region src/enums.ts
18
18
  let TemplateName = /* @__PURE__ */ function(TemplateName) {
@@ -151,7 +151,7 @@ const TEMPLATE_CATALOG = {
151
151
  obug: "^2.1.1",
152
152
  pathe: "^2.0.3",
153
153
  postcss: "^8.5.15",
154
- rolldown: "1.0.3",
154
+ rolldown: "1.1.0",
155
155
  sass: "^1.100.0",
156
156
  stylelint: "^17.12.0",
157
157
  tailwindcss: "^4.3.0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-weapp-vite",
3
3
  "type": "module",
4
- "version": "2.3.45",
4
+ "version": "2.3.47",
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": "7.0.35",
4
+ "version": "7.0.40",
5
5
  "private": true,
6
6
  "description": "weapp-vite 组件库(lib 模式)模板",
7
7
  "author": "ice breaker <1324318532@qq.com>",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "weapp-vite-wevu-tailwindcss-tdesign-template",
3
3
  "type": "module",
4
- "version": "1.0.9",
4
+ "version": "1.0.10",
5
5
  "private": true,
6
6
  "description": "weapp-vite + wevu (Vue SFC) 模板",
7
7
  "author": "ice breaker <1324318532@qq.com>",
@@ -28,14 +28,16 @@ function handleCountTap() {
28
28
  </view>
29
29
 
30
30
  <view class="mt-[24rpx] rounded-[20rpx] bg-[#f4f6ff] p-[20rpx]">
31
- <text class="text-[24rpx] text-[#51517c]">
31
+ <text id="count-label" class="text-[24rpx] text-[#51517c]">
32
32
  {{ buttonText }}
33
33
  </text>
34
34
  </view>
35
35
 
36
- <t-button class="mt-[24rpx]" theme="primary" block @tap="handleCountTap">
37
- 点一下
38
- </t-button>
36
+ <view id="count-button">
37
+ <t-button class="mt-[24rpx] count-button-control" theme="primary" block @tap="handleCountTap">
38
+ 点一下
39
+ </t-button>
40
+ </view>
39
41
  </view>
40
42
  </view>
41
43
  </template>