Update the dependencies.
This commit is contained in:
parent
1a4c59ca14
commit
251f55538b
10
package.json
10
package.json
|
@ -12,16 +12,16 @@
|
|||
"test": "xo && stylelint 'source/**/*.scss'"
|
||||
},
|
||||
"dependencies": {
|
||||
"sass": "^1.22.12",
|
||||
"sass": "^1.26.10",
|
||||
"usercss-meta": "^0.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"husky": "^4.2.5",
|
||||
"nodemon": "^2.0.2",
|
||||
"stylelint": "^13.2.0",
|
||||
"stylelint-config-xo-scss": "^0.12.0",
|
||||
"nodemon": "^2.0.4",
|
||||
"stylelint": "^13.6.1",
|
||||
"stylelint-config-xo-scss": "^0.13.0",
|
||||
"stylelint-config-xo-space": "^0.14.0",
|
||||
"xo": "^0.27.2"
|
||||
"xo": "^0.32.1"
|
||||
},
|
||||
"stylelint": {
|
||||
"extends": [
|
||||
|
|
|
@ -13,7 +13,7 @@ async function main() {
|
|||
}
|
||||
|
||||
// Log how many and which userstyles were built.
|
||||
const styleList = styles.map(style => `* ${style}`).join('\n');
|
||||
const styleList = styles.map((style) => `* ${style}`).join('\n');
|
||||
console.log(`Built ${styles.length} styles:\n${styleList}`);
|
||||
}
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ td {
|
|||
}
|
||||
|
||||
thead {
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: rgb(0 0 0 / 15%);
|
||||
}
|
||||
|
||||
tbody tr:nth-of-type(n) {
|
||||
|
|
Loading…
Reference in New Issue