create-prez-app 4.0.0 → 4.0.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "create-prez-app",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "A starter template for creating your own themed Prez UI instance",
5
5
  "license": "BSD-3-Clause",
6
6
  "bin": {
@@ -42,7 +42,7 @@ This starter template uses [Nuxt](https://nuxt.com) [layers](https://nuxt.com/do
42
42
 
43
43
  Overriding pages, components, layouts, composables and utils can be done by simply creating a file of the same name in the same directory structure for Nuxt to automatically replace it with your version in the application. Refer to Prez UI's base layer [source code](https://github.com/rdflib/prez-ui/tree/main/packages/prez-ui) to help you override files.
44
44
 
45
- > [!NOTE]
45
+ > [!IMPORTANT]
46
46
  > When updating to a newer version of `prez-ui`, ensure any overridden files that contain core logic are kept up-to-date.
47
47
 
48
48
  See our [theming documentation](https://github.com/rdflib/prez-ui/blob/main/docs/theming.md) for a more in-depth guide on customising Prez UI.
@@ -2,8 +2,17 @@
2
2
  export default defineNuxtConfig({
3
3
  compatibilityDate: "2024-04-03",
4
4
  devtools: { enabled: true },
5
- modules: ["@nuxtjs/tailwindcss", "shadcn-nuxt"],
5
+ modules: [
6
+ "@nuxtjs/tailwindcss",
7
+ "shadcn-nuxt",
8
+ "@nuxtjs/color-mode",
9
+ ],
6
10
  extends: [
7
11
  "prez-ui"
8
12
  ],
9
- });
13
+ vite: {
14
+ optimizeDeps: {
15
+ include: ["@triply/yasgui"]
16
+ }
17
+ },
18
+ });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prez-ui-starter",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "private": true,
5
5
  "license": "BSD-3-Clause",
6
6
  "type": "module",
@@ -13,7 +13,9 @@
13
13
  "postinstall": "nuxt prepare"
14
14
  },
15
15
  "dependencies": {
16
+ "@nuxtjs/color-mode": "3.5.2",
16
17
  "@nuxtjs/tailwindcss": "^6.12.2",
18
+ "@triply/yasgui": "^4.2.28",
17
19
  "@vueuse/core": "^12.0.0",
18
20
  "class-variance-authority": "^0.7.1",
19
21
  "clsx": "^2.1.1",
@@ -27,7 +29,7 @@
27
29
  "vue-router": "latest"
28
30
  },
29
31
  "devDependencies": {
30
- "prez-ui": "workspace:*",
32
+ "prez-ui": "^4.0.1",
31
33
  "typescript": "^5.6.3"
32
34
  }
33
35
  }