rimelight-components 2.0.9 → 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 +78 -38
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,81 +1,121 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
- [
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
-
|
|
27
|
+
- Block-based Page Rendering
|
|
28
28
|
- 🚠 Bar
|
|
29
29
|
- 🌲 Baz
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## Setup
|
|
32
|
+
|
|
33
|
+
Install the package from npm:
|
|
32
34
|
|
|
33
|
-
|
|
35
|
+
```bash [bun]
|
|
36
|
+
bun add rimelight-components
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Add the module to your `nuxt.config.js`:
|
|
34
40
|
|
|
35
|
-
```
|
|
36
|
-
|
|
41
|
+
```ts [nuxt.config.ts]
|
|
42
|
+
export default defineNuxtConfig({
|
|
43
|
+
modules: ['rimelight-components']
|
|
44
|
+
})
|
|
37
45
|
```
|
|
38
46
|
|
|
39
|
-
|
|
47
|
+
Learn more in the [installation guide](https://ui.nuxt.com/docs/getting-started/installation/nuxt).
|
|
40
48
|
|
|
41
49
|
## Contribution
|
|
42
50
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
-
|
|
60
|
+
bun install
|
|
61
|
+
```
|
|
49
62
|
|
|
63
|
+
```bash [bun]
|
|
50
64
|
# Generate type stubs
|
|
51
|
-
|
|
65
|
+
bun dev:prepare
|
|
66
|
+
```
|
|
52
67
|
|
|
68
|
+
```bash [bun]
|
|
53
69
|
# Develop with the playground
|
|
54
|
-
|
|
70
|
+
bun dev
|
|
71
|
+
```
|
|
55
72
|
|
|
73
|
+
```bash [bun]
|
|
56
74
|
# Build the playground
|
|
57
|
-
|
|
75
|
+
bun dev:build
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
```bash [bun]
|
|
79
|
+
# Run Typecheck
|
|
80
|
+
bun typecheck
|
|
81
|
+
```
|
|
58
82
|
|
|
59
|
-
|
|
60
|
-
|
|
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
|
-
|
|
96
|
+
```
|
|
65
97
|
|
|
98
|
+
```bash [bun]
|
|
66
99
|
# Release new version
|
|
67
|
-
|
|
100
|
+
bun release
|
|
68
101
|
```
|
|
69
102
|
|
|
70
|
-
|
|
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/
|
|
75
|
-
[npm-version-href]: https://npmjs.com/package/
|
|
76
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/
|
|
77
|
-
[npm-downloads-href]: https://npm.chart.dev/
|
|
78
|
-
[license-src]: https://img.shields.io/npm/l/
|
|
79
|
-
[license-href]: https://npmjs.com/package/
|
|
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
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.
|
|
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.
|
|
5
|
+
"version": "2.0.10",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"
|