aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-17 17:53:42 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-17 17:53:42 +0200
commitaec504d569d490f667c079a8959eef8e970564c1 (patch)
tree3739d7a0a6350b951f9ba81ac7db3e2f99a8522a /src/scripts
parentUpdate changelog (diff)
downloadferdium-app-aec504d569d490f667c079a8959eef8e970564c1.tar.gz
ferdium-app-aec504d569d490f667c079a8959eef8e970564c1.tar.zst
ferdium-app-aec504d569d490f667c079a8959eef8e970564c1.zip
Lint
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/build-theme-info.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripts/build-theme-info.js b/src/scripts/build-theme-info.js
index 4df5a022b..17b0fac85 100644
--- a/src/scripts/build-theme-info.js
+++ b/src/scripts/build-theme-info.js
@@ -27,12 +27,12 @@ async function getRulesFromCssFile(file) {
27/** 27/**
28 * Get all selectors from a list of parsed CSS rules that set any property to one of the specified 28 * Get all selectors from a list of parsed CSS rules that set any property to one of the specified
29 * values. 29 * values.
30 * 30 *
31 * This function will output an object in this format: 31 * This function will output an object in this format:
32 * { 32 * {
33 * 'property-name': [ array of selectors ] 33 * 'property-name': [ array of selectors ]
34 * } 34 * }
35 * 35 *
36 * e.g. 36 * e.g.
37 * { 37 * {
38 * 'background-color': [ 38 * 'background-color': [
@@ -40,7 +40,7 @@ async function getRulesFromCssFile(file) {
40 * '.input-dark' 40 * '.input-dark'
41 * ] 41 * ]
42 * } 42 * }
43 * 43 *
44 * @param {Array} rules Rules as outputted by the `css` module 44 * @param {Array} rules Rules as outputted by the `css` module
45 * @param {Array} values Array of values that should be searched for 45 * @param {Array} values Array of values that should be searched for
46 */ 46 */