@fluxlay/vite 1.0.1 → 1.0.2

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.
Files changed (3) hide show
  1. package/LICENSE.txt +4 -0
  2. package/README.md +23 -0
  3. package/package.json +1 -1
package/LICENSE.txt ADDED
@@ -0,0 +1,4 @@
1
+ Copyright (c) Fluxlay. All rights reserved.
2
+
3
+ This software is provided under the Fluxlay Terms of Service.
4
+ Full terms: https://fluxlay.com/legal/terms
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @fluxlay/vite
2
+
3
+ Vite plugin for building [Fluxlay](https://fluxlay.com) wallpapers.
4
+
5
+ ## Installation
6
+
7
+ ```sh
8
+ npm install -D @fluxlay/vite
9
+ # or
10
+ pnpm add -D @fluxlay/vite
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```ts
16
+ // vite.config.ts
17
+ import { defineConfig } from "vite";
18
+ import { fluxlay } from "@fluxlay/vite";
19
+
20
+ export default defineConfig({
21
+ plugins: [fluxlay()],
22
+ });
23
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluxlay/vite",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Vite plugin for building Fluxlay wallpapers",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "homepage": "https://fluxlay.com",