@citruslime/create-boilerplate 1.1.3 → 1.2.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@citruslime/create-boilerplate",
3
3
  "type": "module",
4
- "version": "1.1.3",
4
+ "version": "1.2.0",
5
5
  "author": {
6
6
  "name": "Citrus-Lime Ltd",
7
7
  "url": "https://citruslime.com"
@@ -1,4 +1,4 @@
1
- import ui from '@citruslime/ui';
1
+ import { i18n } from '@citruslime/ui';
2
2
  import '@citruslime/utils';
3
3
  import piniaPluginPersistedstate from 'pinia-plugin-persistedstate';
4
4
 
@@ -10,6 +10,6 @@ pinia.use(piniaPluginPersistedstate);
10
10
 
11
11
  createApp(app)
12
12
  .use(router)
13
- .use(ui)
13
+ .use(i18n)
14
14
  .use(pinia)
15
15
  .mount('#app');
@@ -1,5 +1,6 @@
1
1
  import { fileURLToPath, URL } from 'node:url';
2
2
 
3
+ import { CitrusLimeUI } from '@citruslime/ui';
3
4
  import vue from '@vitejs/plugin-vue';
4
5
  import autoImport from 'unplugin-auto-import/vite';
5
6
  import { VueUseComponentsResolver } from 'unplugin-vue-components/resolvers';
@@ -48,7 +49,10 @@ export default defineConfig({
48
49
  'src/components',
49
50
  'src/pages'
50
51
  ],
51
- resolvers: [VueUseComponentsResolver()]
52
+ resolvers: [
53
+ VueUseComponentsResolver(),
54
+ CitrusLimeUI()
55
+ ]
52
56
  }),
53
57
  pages({
54
58
  pagesDir: 'src/pages',