rimelight-components 2.0.8 → 2.0.10

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/README.md CHANGED
@@ -1,81 +1,121 @@
1
- <!--
2
- Get your module up and running quickly.
1
+ <picture>
2
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/91ceab67-89ce-4ef4-8678-4402a92baca5">
3
+ <source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/51526d6d-e5ec-41b4-aa37-242dec1cdb27">
4
+ <img alt="Nuxt UI" src="https://github.com/user-attachments/assets/51526d6d-e5ec-41b4-aa37-242dec1cdb27">
5
+ </picture>
3
6
 
4
- Find and replace all on all files (CMD+SHIFT+F):
5
- - Name: My Module
6
- - Package name: my-module
7
- - Description: My new Nuxt module
8
- -->
9
-
10
- # My Module
7
+ # Rimelight Components
11
8
 
12
9
  [![npm version][npm-version-src]][npm-version-href]
13
10
  [![npm downloads][npm-downloads-src]][npm-downloads-href]
14
11
  [![License][license-src]][license-href]
15
12
  [![Nuxt][nuxt-src]][nuxt-href]
16
13
 
17
- My new Nuxt module for doing amazing things.
14
+ A Nuxt module with components and utilities used internally at Rimelight Entertainment.
15
+
16
+ > [!WARNING]
17
+ > This module is in early development and may contain placeholders and not strictly adhere to best practices.
18
18
 
19
- - [✨ &nbsp;Release Notes](/CHANGELOG.md)
20
- <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
21
- <!-- - [📖 &nbsp;Documentation](https://example.com) -->
19
+ - [Documentation](https://ui.nuxt.com/docs)
20
+ - [Playground](https://ui3-playground.nuxt.dev)
21
+ - [Release Notes](/CHANGELOG.md)
22
22
 
23
23
  ## Features
24
24
 
25
25
  <!-- Highlight some of the features your module provide here -->
26
26
 
27
- - &nbsp;Foo
27
+ - Block-based Page Rendering
28
28
  - 🚠 &nbsp;Bar
29
29
  - 🌲 &nbsp;Baz
30
30
 
31
- ## Quick Setup
31
+ ## Setup
32
+
33
+ Install the package from npm:
32
34
 
33
- Install the module to your Nuxt application with one command:
35
+ ```bash [bun]
36
+ bun add rimelight-components
37
+ ```
38
+
39
+ Add the module to your `nuxt.config.js`:
34
40
 
35
- ```bash
36
- npx nuxi module add my-module
41
+ ```ts [nuxt.config.ts]
42
+ export default defineNuxtConfig({
43
+ modules: ['rimelight-components']
44
+ })
37
45
  ```
38
46
 
39
- That's it! You can now use My Module in your Nuxt app ✨
47
+ Learn more in the [installation guide](https://ui.nuxt.com/docs/getting-started/installation/nuxt).
40
48
 
41
49
  ## Contribution
42
50
 
43
- <details>
44
- <summary>Local development</summary>
45
-
46
- ```bash
51
+ Thank you for considering contributing to Rimelight Components. Here are a few ways you can get involved:
52
+
53
+ - Reporting Bugs: If you come across any bugs or issues, please check out the reporting bugs guide to learn how to submit a bug report.
54
+ - Suggestions: Have any thoughts to enhance Rimelight Components? We'd love to hear them! Check out the [contribution guide](https://ui.nuxt.com/docs/getting-started/contribution) to share your suggestions.
55
+
56
+ ## Local Development
57
+
58
+ ```bash [bun]
47
59
  # Install dependencies
48
- npm install
60
+ bun install
61
+ ```
49
62
 
63
+ ```bash [bun]
50
64
  # Generate type stubs
51
- npm run dev:prepare
65
+ bun dev:prepare
66
+ ```
52
67
 
68
+ ```bash [bun]
53
69
  # Develop with the playground
54
- npm run dev
70
+ bun dev
71
+ ```
55
72
 
73
+ ```bash [bun]
56
74
  # Build the playground
57
- npm run dev:build
75
+ bun dev:build
76
+ ```
77
+
78
+ ```bash [bun]
79
+ # Run Typecheck
80
+ bun typecheck
81
+ ```
58
82
 
59
- # Run ESLint
60
- npm run lint
83
+ ```bash [bun]
84
+ # Run Oxlint
85
+ bun lint
86
+ ```
87
+
88
+ ```bash [bun]
89
+ # Run Prettier
90
+ bun format
91
+ ```
61
92
 
93
+ ```bash [bun]
62
94
  # Run Vitest
63
95
  npm run test
64
- npm run test:watch
96
+ ```
65
97
 
98
+ ```bash [bun]
66
99
  # Release new version
67
- npm run release
100
+ bun release
68
101
  ```
69
102
 
70
- </details>
103
+ Learn more in the [development guide](https://ui.nuxt.com/docs/getting-started/contribution#local-development).
104
+
105
+ ## Sponshorship
106
+
107
+
108
+ ## License
109
+
110
+ Licensed under the [MIT license](https://github.com/nuxt/ui/blob/v4/LICENSE.md).
71
111
 
72
112
  <!-- Badges -->
73
113
 
74
- [npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
75
- [npm-version-href]: https://npmjs.com/package/my-module
76
- [npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
77
- [npm-downloads-href]: https://npm.chart.dev/my-module
78
- [license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
79
- [license-href]: https://npmjs.com/package/my-module
114
+ [npm-version-src]: https://img.shields.io/npm/v/rimelight-components/latest.svg?style=flat&colorA=020420&colorB=00DC82
115
+ [npm-version-href]: https://npmjs.com/package/rimelight-components
116
+ [npm-downloads-src]: https://img.shields.io/npm/dm/rimelight-components.svg?style=flat&colorA=020420&colorB=00DC82
117
+ [npm-downloads-href]: https://npm.chart.dev/rimelight-components
118
+ [license-src]: https://img.shields.io/npm/l/rimelight-components.svg?style=flat&colorA=020420&colorB=00DC82
119
+ [license-href]: https://npmjs.com/package/rimelight-components
80
120
  [nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
81
121
  [nuxt-href]: https://nuxt.com
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
- "version": "2.0.8",
3
+ "version": "2.0.10",
4
4
  "docs": "https://rimelight.com/tools/rimelight-components",
5
5
  "configKey": "rimelightComponents",
6
6
  "compatibility": {
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import { readdirSync } from 'node:fs';
4
4
  import { basename } from 'node:path';
5
5
 
6
6
  const name = "rimelight-components";
7
- const version = "2.0.8";
7
+ const version = "2.0.10";
8
8
  const homepage = "https://rimelight.com/tools/rimelight-components";
9
9
 
10
10
  const defaultOptions = {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "name": "rimelight-components",
4
4
  "description": "A component library by Rimelight Entertainment.",
5
- "version": "2.0.8",
5
+ "version": "2.0.10",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"