@unocss/webpack 0.32.7 → 0.32.8

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 +1 -1
  2. package/README.md +4 -0
  3. package/package.json +4 -5
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Anthony Fu <https://github.com/antfu>
3
+ Copyright (c) 2021-PRESENT Anthony Fu <https://github.com/antfu>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -24,3 +24,7 @@ module.exports = {
24
24
  ```
25
25
 
26
26
  Or you can have the config file in `unocss.config.js` or `unocss.config.ts`.
27
+
28
+ ## License
29
+
30
+ MIT License &copy; 2021-PRESENT [Anthony Fu](https://github.com/antfu)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/webpack",
3
- "version": "0.32.7",
3
+ "version": "0.32.8",
4
4
  "description": "The Webpack plugin for UnoCSS",
5
5
  "keywords": [
6
6
  "unocss",
@@ -37,8 +37,8 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@rollup/pluginutils": "^4.2.1",
40
- "@unocss/config": "0.32.7",
41
- "@unocss/core": "0.32.7",
40
+ "@unocss/config": "0.32.8",
41
+ "@unocss/core": "0.32.8",
42
42
  "unplugin": "^0.6.2",
43
43
  "webpack-sources": "^3.2.3"
44
44
  },
@@ -50,6 +50,5 @@
50
50
  "scripts": {
51
51
  "build": "unbuild",
52
52
  "stub": "unbuild --stub"
53
- },
54
- "readme": "# @unocss/webpack\n\nThe Webpack plugin for UnoCSS.\n\n> This plugin does not come with any default presets.\n\nCurrently, this plugin only supports [the `global` mode](https://github.com/unocss/unocss/blob/main/packages/vite/src/types.ts#L11-L21)\n\n## Installation\n\n```bash\nnpm i -D @unocss/webpack\n```\n\n```ts\n// webpack.config.js\nconst UnoCSS = require('@unocss/webpack').default\n\nmodule.exports = {\n plugins: [\n UnoCSS({ /* options */ }),\n ],\n}\n```\n\nOr you can have the config file in `unocss.config.js` or `unocss.config.ts`.\n"
53
+ }
55
54
  }