rimelight-components 2.0.5 → 2.0.7

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/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
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.5";
7
+ const version = "2.0.7";
8
8
  const homepage = "https://rimelight.com/tools/rimelight-components";
9
9
 
10
10
  const defaultOptions = {
@@ -97,7 +97,7 @@ const module = defineNuxtModule().with({
97
97
  },
98
98
  hooks: {},
99
99
  defaults: defaultOptions,
100
- moduleDependencies(nuxt) {
100
+ moduleDependencies(_nuxt) {
101
101
  const dependencies = {
102
102
  "@nuxt/image": {
103
103
  version: ">=1.0.0",
@@ -148,10 +148,10 @@ const module = defineNuxtModule().with({
148
148
  };
149
149
  return dependencies;
150
150
  },
151
- onInstall(nuxt) {
151
+ onInstall(_nuxt) {
152
152
  console.log(`Setting up ${name}.`);
153
153
  },
154
- onUpgrade(nuxt, options, previousVersion) {
154
+ onUpgrade(_nuxt, _options, previousVersion) {
155
155
  console.log(`Upgrading ${name} from ${previousVersion} to ${version}.`);
156
156
  },
157
157
  setup(options, nuxt) {
@@ -9,10 +9,10 @@ interface FlickeringGridProps {
9
9
  maxOpacity?: number;
10
10
  }
11
11
  declare const __VLS_export: import("vue").DefineComponent<FlickeringGridProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FlickeringGridProps> & Readonly<{}>, {
12
+ color: string;
12
13
  squareSize: number;
13
14
  gridGap: number;
14
15
  flickerChance: number;
15
- color: string;
16
16
  maxOpacity: number;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
18
  declare const _default: typeof __VLS_export;
@@ -9,10 +9,10 @@ interface FlickeringGridProps {
9
9
  maxOpacity?: number;
10
10
  }
11
11
  declare const __VLS_export: import("vue").DefineComponent<FlickeringGridProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FlickeringGridProps> & Readonly<{}>, {
12
+ color: string;
12
13
  squareSize: number;
13
14
  gridGap: number;
14
15
  flickerChance: number;
15
- color: string;
16
16
  maxOpacity: number;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
18
  declare const _default: typeof __VLS_export;
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",
5
+ "version": "2.0.7",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"
@@ -74,10 +74,8 @@
74
74
  "lint:fix": "oxlint . --fix",
75
75
  "format": "prettier . --check .",
76
76
  "format:fix": "prettier . --write .",
77
- "test": "vitest run",
78
- "test:watch": "vitest watch",
79
- "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
80
- "release": "bun run lint && bun run test && bun run prepack && changelogen --release && bun publish && git push --follow-tags"
77
+ "test": "vitest",
78
+ "release": "release-it"
81
79
  },
82
80
  "dependencies": {
83
81
  "@nuxt/image": "^1.11.0",