@adamlui/scss-to-css 1.7.4 → 1.7.5
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 +8 -8
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
<a href="https://www.npmjs.com/package/@adamlui/scss-to-css"><img height=31 src="https://img.shields.io/npm/dt/%40adamlui%2Fscss-to-css?logo=npm&color=af68ff&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
30
30
|
<a href="#%EF%B8%8F-mit-license"><img height=31 src="https://img.shields.io/badge/License-MIT-orange.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
31
|
-
<a href="https://github.com/adamlui/js-utils/releases/tag/scss-to-css-1.7.
|
|
31
|
+
<a href="https://github.com/adamlui/js-utils/releases/tag/scss-to-css-1.7.5"><img height=31 src="https://img.shields.io/badge/Latest_Build-1.7.5-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
32
32
|
<a href="https://www.npmjs.com/package/@adamlui/scss-to-css?activeTab=code"><img height=31 src="https://img.shields.io/npm/unpacked-size/%40adamlui%2Fscss-to-css?style=for-the-badge&logo=ebox&logoColor=white&color=blue&labelColor=464646"></a>
|
|
33
33
|
<a href="https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=adamlui_js-utils:scss-to-css/scss-to-css.js"><img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Ascss-to-css%2Fscss-to-css.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=sonarcloud&logoColor=white&labelColor=464646&label=Vulnerabilities&color=gold"></a>
|
|
34
34
|
|
|
@@ -228,19 +228,19 @@ findSCSS() » Searching for SCSS files...
|
|
|
228
228
|
findSCSS() » Search complete! 2 files found.
|
|
229
229
|
findSCSS() » Check returned array.
|
|
230
230
|
[
|
|
231
|
-
'E:\\js\\utils\\
|
|
232
|
-
'E:\\js\\utils\\
|
|
231
|
+
'E:\\js\\utils\\scss-to-css\assets\\scss\\foo.scss',
|
|
232
|
+
'E:\\js\\utils\\scss-to-css\assets\\scss\\bar.scss'
|
|
233
233
|
]
|
|
234
234
|
*/
|
|
235
235
|
```
|
|
236
236
|
|
|
237
237
|
Available parameters (and their default settings) are:
|
|
238
238
|
|
|
239
|
-
Name | Desciption
|
|
240
|
-
|
|
241
|
-
`recursive` | Recursively search for nested files
|
|
242
|
-
`verbose` | Show logging in console/terminal.
|
|
243
|
-
`dotFolders` | Include dotfolders in file search.
|
|
239
|
+
Name | Desciption | Default value
|
|
240
|
+
-------------|----------------------------------------------------------|---------------
|
|
241
|
+
`recursive` | Recursively search for nested files in searchDir passed. | `true`
|
|
242
|
+
`verbose` | Show logging in console/terminal. | `true`
|
|
243
|
+
`dotFolders` | Include dotfolders in file search. | `false`
|
|
244
244
|
|
|
245
245
|
<br>
|
|
246
246
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adamlui/scss-to-css",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"description": "Recursively compile all SCSS files into minified CSS",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Adam Lui",
|
|
@@ -16,12 +16,16 @@
|
|
|
16
16
|
"!docs/*/"
|
|
17
17
|
],
|
|
18
18
|
"bin": {
|
|
19
|
-
"scsstocss": "dist/
|
|
20
|
-
"scss-to-css": "dist/
|
|
19
|
+
"scsstocss": "dist/cli.min.js",
|
|
20
|
+
"scss-to-css": "dist/cli.min.js"
|
|
21
|
+
},
|
|
22
|
+
"directories": {
|
|
23
|
+
"lib": ".",
|
|
24
|
+
"doc": "./docs"
|
|
21
25
|
},
|
|
22
26
|
"scripts": {
|
|
23
27
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
24
|
-
"build": "minify-js
|
|
28
|
+
"build": "minify-js src dist",
|
|
25
29
|
"bump:patch": "bash utils/bump.sh patch",
|
|
26
30
|
"bump:minor": "bash utils/bump.sh minor",
|
|
27
31
|
"bump:major": "bash utils/bump.sh major",
|
|
@@ -54,6 +58,6 @@
|
|
|
54
58
|
"url": "https://github.com/sponsors/adamlui"
|
|
55
59
|
},
|
|
56
60
|
"devDependencies": {
|
|
57
|
-
"@adamlui/minify.js": "^1.4.
|
|
61
|
+
"@adamlui/minify.js": "^1.4.8"
|
|
58
62
|
}
|
|
59
63
|
}
|