@gustcss/postcss 0.5.1 → 0.5.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.
- package/index.js +4 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -16,6 +16,10 @@ const fs = require('fs')
|
|
|
16
16
|
*
|
|
17
17
|
* In your CSS file:
|
|
18
18
|
* @gustcss;
|
|
19
|
+
*
|
|
20
|
+
* @security Configuration paths (content, config) are trusted as they are
|
|
21
|
+
* provided by the developer in their build configuration. This plugin is
|
|
22
|
+
* designed for build-time use only and should not process untrusted input.
|
|
19
23
|
*/
|
|
20
24
|
module.exports = (opts = {}) => {
|
|
21
25
|
const content = opts.content || ['./src/**/*.{js,ts,jsx,tsx}']
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gustcss/postcss",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "PostCSS plugin for GustCSS",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"access": "public"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"gustcss": "^0.5.
|
|
15
|
+
"gustcss": "^0.5.2"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"postcss": "^8.0.0"
|