@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 CHANGED
@@ -1,8 +1,8 @@
1
1
  # mlut plugins #
2
2
 
3
- <img alt="Logo" src="https://github.com/mr150/mlut/raw/master/docs/img/logo-full.png" width="350"/>
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/mr150/mlut) plugins for Rollup, Vite and Webpack. Based on [unplugin](https://unplugin.unjs.io/).
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/mr150/mlut/tree/master/test/plugins)
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://mr150.github.io/mlut/section-start.html#kssref-start-integrations)
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
@@ -78,6 +78,9 @@ export const unplugin = createUnplugin((options, meta) => {
78
78
  isViteWatch = true;
79
79
  }
80
80
  await initPlugin();
81
+ if (isWindows) {
82
+ return;
83
+ }
81
84
  return {
82
85
  server: {
83
86
  watch: {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@mlut/plugins",
3
- "version": "1.0.3",
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://mr150.github.io/mlut/",
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/mr150/mlut.git"
24
+ "url": "https://github.com/mlutcss/mlut.git"
25
25
  },
26
26
  "bugs": {
27
- "url": "https://github.com/mr150/mlut/issues"
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.21.5",
48
+ "esbuild": "^0.25.0",
49
49
  "lightningcss": "^1.25.1",
50
50
  "postcss": "^8.4.38",
51
- "typescript": "^4.8.0"
51
+ "typescript": "^5.8.0"
52
52
  },
53
53
  "dependencies": {
54
- "@mlut/core": "^2.1.0",
55
- "fs-extra": "^11.2.0",
56
- "unplugin": "^1.10.1"
54
+ "@mlut/core": "^2.5.0",
55
+ "fs-extra": "11.2.0",
56
+ "unplugin": "2.3.10"
57
57
  }
58
58
  }