@weapp-core/init 1.1.7 → 1.1.8
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/index.cjs
CHANGED
|
@@ -40,7 +40,7 @@ __export(src_exports, {
|
|
|
40
40
|
});
|
|
41
41
|
module.exports = __toCommonJS(src_exports);
|
|
42
42
|
|
|
43
|
-
// ../../node_modules/.pnpm/tsup@8.3.5_@swc+core@1.
|
|
43
|
+
// ../../node_modules/.pnpm/tsup@8.3.5_@swc+core@1.9.1_jiti@2.3.1_postcss@8.4.47_tsx@4.19.2_typescript@5.6.3_yaml@2.6.0/node_modules/tsup/assets/cjs_shims.js
|
|
44
44
|
var getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
|
|
45
45
|
var importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
|
|
46
46
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weapp-core/init",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.8",
|
|
5
5
|
"description": "@weapp-core/init",
|
|
6
6
|
"author": "ice breaker <1324318532@qq.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"fs-extra": "^11.2.0",
|
|
34
34
|
"@weapp-core/logger": "^1.0.1",
|
|
35
|
-
"@weapp-core/shared": "^1.0.
|
|
35
|
+
"@weapp-core/shared": "^1.0.4"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"dev": "tsup --watch --sourcemap",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<view class="min-h-screen {{ mode === 'light'?'bg-gray-100':'bg-gray-900' }} transition-colors duration-500">
|
|
1
|
+
<view class="min-h-screen {{ mode === 'light'?'bg-gray-100 text-slate-800':'bg-gray-900 text-slate-200' }} transition-colors duration-500">
|
|
2
2
|
<view class="flex flex-col items-center pt-20 space-y-10">
|
|
3
3
|
<view class="flex space-x-8">
|
|
4
4
|
<view class="w-24 h-24 bg-[url(https://vite.icebreaker.top/logo.png)] bg-[length:100%_100%] bg-no-repeat"></view>
|
|
@@ -8,5 +8,11 @@
|
|
|
8
8
|
weapp-vite & weapp-tailwindcss
|
|
9
9
|
</view>
|
|
10
10
|
<view class="{{ mode === 'light' ? 'i-mdi-moon-waxing-crescent':'i-mdi-weather-sunny text-white' }} text-8xl" bind:tap="switchMode"></view>
|
|
11
|
+
<view class="underline" mark:url="https://vite.icebreaker.top" bind:tap="copy">
|
|
12
|
+
https://vite.icebreaker.top
|
|
13
|
+
</view>
|
|
14
|
+
<view class="underline" mark:url="https://tw.icebreaker.top" bind:tap="copy">
|
|
15
|
+
https://tw.icebreaker.top
|
|
16
|
+
</view>
|
|
11
17
|
</view>
|
|
12
|
-
</view>
|
|
18
|
+
</view>
|