@icebreakers/monorepo 1.0.13 → 1.0.14

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.
@@ -767,7 +767,7 @@ init_esm_shims();
767
767
 
768
768
  // package.json
769
769
  var name = "@icebreakers/monorepo";
770
- var version = "1.0.13";
770
+ var version = "1.0.14";
771
771
 
772
772
  // src/scripts.ts
773
773
  init_esm_shims();
package/dist/cli.cjs CHANGED
@@ -232,7 +232,7 @@ init_cjs_shims();
232
232
 
233
233
  // package.json
234
234
  var name = "@icebreakers/monorepo";
235
- var version = "1.0.13";
235
+ var version = "1.0.14";
236
236
 
237
237
  // src/create.ts
238
238
  init_cjs_shims();
package/dist/cli.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  syncNpmMirror,
12
12
  upgradeMonorepo,
13
13
  version
14
- } from "./chunk-APOKJFIJ.js";
14
+ } from "./chunk-YL5OCBTJ.js";
15
15
 
16
16
  // src/cli.ts
17
17
  init_esm_shims();
package/dist/index.cjs CHANGED
@@ -762,7 +762,7 @@ init_cjs_shims();
762
762
 
763
763
  // package.json
764
764
  var name = "@icebreakers/monorepo";
765
- var version = "1.0.13";
765
+ var version = "1.0.14";
766
766
 
767
767
  // src/scripts.ts
768
768
  init_cjs_shims();
package/dist/index.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  setVscodeBinaryMirror,
13
13
  syncNpmMirror,
14
14
  upgradeMonorepo
15
- } from "./chunk-APOKJFIJ.js";
15
+ } from "./chunk-YL5OCBTJ.js";
16
16
 
17
17
  // src/index.ts
18
18
  init_esm_shims();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@icebreakers/monorepo",
3
3
  "type": "module",
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
5
5
  "description": "icebreaker's monorepo config generator",
6
6
  "author": "ice breaker <1324318532@qq.com>",
7
7
  "license": "MIT",
@@ -7,8 +7,10 @@ withDefaults(defineProps<{
7
7
  </script>
8
8
 
9
9
  <template>
10
- <div>
11
- {{ msg }}
10
+ <div class="p-2">
11
+ <div class="border p-2 rounded-2xl">
12
+ {{ msg }}
13
+ </div>
12
14
  </div>
13
15
  </template>
14
16
 
@@ -45,10 +45,12 @@
45
45
  "types": "./dist/index.d.ts"
46
46
  },
47
47
  "devDependencies": {
48
+ "@tailwindcss/vite": "^4.1.12",
48
49
  "@vitejs/plugin-vue": "^6.0.1",
49
50
  "@vue/test-utils": "^2.4.6",
50
51
  "@vue/tsconfig": "^0.8.1",
51
52
  "jsdom": "^26.1.0",
53
+ "tailwindcss": "^4.1.12",
52
54
  "unplugin-vue-router": "^0.15.0",
53
55
  "vite": "^7.1.3",
54
56
  "vite-plugin-dts": "^4.5.4",
@@ -5,5 +5,3 @@ import { HelloWorld } from '~/index'
5
5
  <template>
6
6
  <HelloWorld msg="Vite + Vue" />
7
7
  </template>
8
-
9
- <style scoped></style>
@@ -0,0 +1 @@
1
+ @import 'tailwindcss';
@@ -1,4 +1,5 @@
1
1
  import type { UserConfig } from 'vite'
2
+ import Tailwindcss from '@tailwindcss/vite'
2
3
  import Vue from '@vitejs/plugin-vue'
3
4
  import path from 'pathe'
4
5
  import VueRouter from 'unplugin-vue-router/vite'
@@ -20,6 +21,7 @@ export default mergeConfig(sharedConfig, {
20
21
  entryRoot: './lib',
21
22
  },
22
23
  ),
24
+ Tailwindcss(),
23
25
  ],
24
26
  // https://vite.dev/guide/build.html#library-mode
25
27
  build: {