@rsbuild/plugin-stylus 0.7.0-beta.0 → 0.7.0-beta.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 (2) hide show
  1. package/dist/index.d.ts +6 -4
  2. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { type RsbuildPlugin } from '@rsbuild/core';
1
+ import { RsbuildPlugin } from '@rsbuild/core';
2
+
2
3
  type StylusOptions = {
3
4
  use?: string[];
4
5
  include?: string;
@@ -17,6 +18,7 @@ type StylusLoaderOptions = {
17
18
  */
18
19
  sourceMap?: boolean;
19
20
  };
20
- export type PluginStylusOptions = StylusLoaderOptions;
21
- export declare function pluginStylus(options?: PluginStylusOptions): RsbuildPlugin;
22
- export {};
21
+ type PluginStylusOptions = StylusLoaderOptions;
22
+ declare function pluginStylus(options?: PluginStylusOptions): RsbuildPlugin;
23
+
24
+ export { type PluginStylusOptions, pluginStylus };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsbuild/plugin-stylus",
3
- "version": "0.7.0-beta.0",
3
+ "version": "0.7.0-beta.2",
4
4
  "description": "Stylus plugin for Rsbuild",
5
5
  "homepage": "https://rsbuild.dev",
6
6
  "repository": {
@@ -25,17 +25,17 @@
25
25
  "dependencies": {
26
26
  "stylus": "0.63.0",
27
27
  "stylus-loader": "8.1.0",
28
- "@rsbuild/shared": "0.7.0-beta.0"
28
+ "@rsbuild/shared": "0.7.0-beta.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "typescript": "^5.4.2",
32
32
  "webpack": "^5.91.0",
33
- "@rsbuild/core": "0.7.0-beta.0",
34
- "@rsbuild/webpack": "0.7.0-beta.0",
35
- "@scripts/test-helper": "0.7.0-beta.0"
33
+ "@rsbuild/core": "0.7.0-beta.2",
34
+ "@rsbuild/webpack": "0.7.0-beta.2",
35
+ "@scripts/test-helper": "0.7.0-beta.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "@rsbuild/core": "^0.7.0-beta.0"
38
+ "@rsbuild/core": "^0.7.0-beta.2"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public",