@mlut/plugins 1.0.3 → 1.0.4
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 +4 -4
- package/dist/index.js +3 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# mlut plugins #
|
|
2
2
|
|
|
3
|
-
<img alt="Logo" src="https://github.com/
|
|
3
|
+
<img alt="Logo" src="https://github.com/mlutcss/mlut/raw/master/docs/img/logo-full.png" width="350"/>
|
|
4
4
|
|
|
5
|
-
The [mlut](https://github.com/
|
|
5
|
+
The [mlut](https://github.com/mlutcss/mlut) plugins for Rollup, Vite and Webpack. Based on [unplugin](https://unplugin.unjs.io/).
|
|
6
6
|
|
|
7
7
|
## Installation ##
|
|
8
8
|
|
|
@@ -16,7 +16,7 @@ This allows you to control the versions of all your dependencies, and to choose
|
|
|
16
16
|
|
|
17
17
|
## Usage ##
|
|
18
18
|
|
|
19
|
-
Import the plugin for the appropriate bundler from the `@mlut/plugins` package as in one of the examples below. You can find more detailed examples using dev-server and livereload in the plugin tests [directory](https://github.com/
|
|
19
|
+
Import the plugin for the appropriate bundler from the `@mlut/plugins` package as in one of the examples below. You can find more detailed examples using dev-server and livereload in the plugin tests [directory](https://github.com/mlutcss/mlut/tree/master/test/plugins)
|
|
20
20
|
|
|
21
21
|
### Rollup ###
|
|
22
22
|
|
|
@@ -103,7 +103,7 @@ You can add the options in your input Sass file too. Options must be a **valid J
|
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
## Documentation ##
|
|
106
|
-
Full documentation available [here](https://
|
|
106
|
+
Full documentation available [here](https://docs.mlut.style/section-start.html#kssref-start-integrations)
|
|
107
107
|
|
|
108
108
|
## License ##
|
|
109
109
|
MIT
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mlut/plugins",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "mlut plugins for Rollup, Vite and Webpack",
|
|
5
5
|
"author": "mr150",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"homepage": "https://
|
|
8
|
+
"homepage": "https://mlut.style/",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"mlut",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
23
|
"directory": "packages/plugins",
|
|
24
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "https://github.com/mlutcss/mlut.git"
|
|
25
25
|
},
|
|
26
26
|
"bugs": {
|
|
27
|
-
"url": "https://github.com/
|
|
27
|
+
"url": "https://github.com/mlutcss/mlut/issues"
|
|
28
28
|
},
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"browserslist": "^4.23.1",
|
|
46
46
|
"clean-css": "^5.3.3",
|
|
47
47
|
"csso": "^5.0.5",
|
|
48
|
-
"esbuild": "^0.
|
|
48
|
+
"esbuild": "^0.25.0",
|
|
49
49
|
"lightningcss": "^1.25.1",
|
|
50
50
|
"postcss": "^8.4.38",
|
|
51
|
-
"typescript": "^
|
|
51
|
+
"typescript": "^5.8.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@mlut/core": "^2.
|
|
55
|
-
"fs-extra": "
|
|
56
|
-
"unplugin": "
|
|
54
|
+
"@mlut/core": "^2.5.0",
|
|
55
|
+
"fs-extra": "11.2.0",
|
|
56
|
+
"unplugin": "2.3.10"
|
|
57
57
|
}
|
|
58
58
|
}
|