@styleframe/plugin 2.0.3 → 2.1.0
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/CHANGELOG.md +12 -0
- package/dist/index.d.ts +2 -2
- package/dist/webpack.d.ts +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @styleframe/plugin
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`628e650`](https://github.com/styleframe-dev/styleframe/commit/628e65039bae5e21ab9a66e16037e7e2791f8c8b) Thanks [@alexgrozav](https://github.com/alexgrozav)! - chore: update dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`628e650`](https://github.com/styleframe-dev/styleframe/commit/628e65039bae5e21ab9a66e16037e7e2791f8c8b)]:
|
|
12
|
+
- @styleframe/transpiler@2.2.0
|
|
13
|
+
- @styleframe/loader@2.2.0
|
|
14
|
+
|
|
3
15
|
## 2.0.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Options } from "./types-Clt7t35T.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as unplugin1 from "unplugin";
|
|
3
3
|
import { UnpluginFactory } from "unplugin";
|
|
4
4
|
|
|
5
5
|
//#region src/index.d.ts
|
|
6
6
|
declare const unpluginFactory: UnpluginFactory<Options | undefined>;
|
|
7
|
-
declare const unplugin:
|
|
7
|
+
declare const unplugin: unplugin1.UnpluginInstance<Options | undefined, boolean>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { unplugin as default, unplugin, unpluginFactory };
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/webpack.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Options } from "./types-Clt7t35T.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as webpack0 from "webpack";
|
|
3
3
|
|
|
4
4
|
//#region src/webpack.d.ts
|
|
5
|
-
declare const _default: (options?: Options | undefined) =>
|
|
5
|
+
declare const _default: (options?: Options | undefined) => webpack0.WebpackPluginInstance;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { _default as default };
|
|
8
8
|
//# sourceMappingURL=webpack.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@styleframe/plugin",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0
|
|
4
|
+
"version": "2.1.0",
|
|
5
5
|
"description": "Unplugin for Styleframe. Use it with Vite, Webpack, Astro, Nuxt, Rollup, Rspack, and more.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"keywords": [
|
|
@@ -79,13 +79,14 @@
|
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@styleframe/license": "^2.0.0",
|
|
82
|
+
"@styleframe/loader": "^2.2.0",
|
|
83
|
+
"@styleframe/transpiler": "^2.2.0",
|
|
82
84
|
"consola": "^3.4.2",
|
|
83
|
-
"unplugin": "^2.3.4"
|
|
84
|
-
"@styleframe/loader": "2.0.3",
|
|
85
|
-
"@styleframe/transpiler": "2.0.3"
|
|
85
|
+
"unplugin": "^2.3.4"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"@farmfe/core": "^1.7.11",
|
|
89
|
+
"@styleframe/config-typescript": "^2",
|
|
89
90
|
"@vitest/coverage-v8": "^3.2.4",
|
|
90
91
|
"@nuxt/kit": "^3.17.4",
|
|
91
92
|
"@nuxt/schema": "^3.17.4",
|
|
@@ -97,8 +98,7 @@
|
|
|
97
98
|
"typescript": "^5.8.3",
|
|
98
99
|
"vite": "^6.3.5",
|
|
99
100
|
"vitest": "^3.1.4",
|
|
100
|
-
"webpack": "^5.99.9"
|
|
101
|
-
"@styleframe/config-typescript": "2.0.3"
|
|
101
|
+
"webpack": "^5.99.9"
|
|
102
102
|
},
|
|
103
103
|
"homepage": "https://github.com/styleframe-dev/styleframe#readme",
|
|
104
104
|
"bugs": {
|