8000 Update dev-dependencies · sin/unifiedjs.github.io@39648a3 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit 39648a3

Browse files
committed
Update dev-dependencies
1 parent 5d80763 commit 39648a3

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

package.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"devDependencies": {
1616
"async": "^2.0.1",
1717
"bail": "^1.0.1",
18-
"browserify": "^14.0.0",
18+
"browserify": "^15.0.0",
1919
"budo": "^10.0.0",
2020
"bundle-collapser": "^1.2.1",
2121
"cssnano": "^3.10.0",
@@ -30,7 +30,7 @@
3030
"mkdirp": "^0.5.1",
3131
"pluralize": "^7.0.0",
3232
"rehype-autolink-headings": "^2.0.0",
33-
"rehype-cli": "^4.0.0",
33+
"rehype-cli": "^5.0.0",
3434
"rehype-document": "^2.0.0",
3535
"rehype-highlight": "^2.0.0",
3636
"rehype-parse": "^4.0.0",
@@ -39,15 +39,15 @@
3939
"rehype-retext": "^2.0.0",
4040
"rehype-slug": "^2.0.0",
4141
"rehype-stringify": "^3.0.0",
42-
"remark-cli": "^4.0.0",
42+
"remark-cli": "^5.0.0",
4343
"remark-lint-first-heading-level": "^1.0.0",
4444
"remark-lint-no-dead-urls": "^0.3.0",
45-
"remark-parse": "^4.0.0",
46-
"remark-preset-wooorm": "^3.0.0",
47-
"remark-rehype": "^2.0.0",
45+
"remark-parse": "^5.0.0",
46+
"remark-preset-wooorm": "^4.0.0",
47+
"remark-rehype": "^3.0.0",
4848
"remark-retext": "^3.0.0",
49-
"remark-toc": "^4.0.0",
50-
"remark-validate-links": "^6.0.0",
49+
"remark-toc": "^5.0.0",
50+
"remark-validate-links": "^7.0.0",
5151
"retext-english": "^3.0.0",
5252
"retext-equality": "^3.0.0",
5353
"retext-passive": "^1.0.0",
@@ -59,7 +59,7 @@
5959
"retext-syntax-mentions": "^1.1.2",
6060
"strip-comments": "^0.4.4",
6161
"stylelint": "^8.0.0",
62-
"stylelint-config-standard": "^17.0.0",
62+
"stylelint-config-standard": "^18.0.0",
6363
"svgo": "^1.0.0",
6464
"to-vfile": "^2.1.0",
6565
"trim": "0.0.1",
@@ -87,7 +87,10 @@
8787
]
8888
},
8989
"stylelint": {
90-
"extends": "stylelint-config-standard"
90+
"extends": "stylelint-config-standard",
91+
"rules": {
92+
"no-descending-specificity": null
93+
}
9194
},
9295
"remarkConfig": {
9396
"plugins": [

src/index.css

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -601,16 +601,22 @@ footer > :last-child {
601601
.hljs-meta { color: hsl(40, 58%, 35%); }
602602
.hljs-name { color: hsl(114, 28%, 35%); }
603603
.hljs-attr { color: hsl(264, 50%, 50%); }
604-
.hljs-addition { color: hsl(102, 53%, 42%); }
605-
.hljs-deletion { color: hsl(14, 100%, 37%); }
606604
.hljs-tag { color: #777; }
607605
.hljs-selector-tag { color: hsl(114, 28%, 55%); }
608606
.language-html .hljs-name { color: hsl(114, 28%, 55%); }
609607
.language-html .hljs-attr { color: hsl(264, 50%, 70%); }
610608
.language-html .hljs-string { color: hsl(225, 72%, 75%); }
611609
.hljs-comment { color: #aaa; }
612-
.hljs-addition { background-color: hsl(120, 100%, 96%); }
613-
.hljs-deletion { background-color: hsl(0, 100%, 96%); }
610+
611+
.hljs-addition {
612+
color: hsl(102, 53%, 42%);
613+
background-color: hsl(120, 100%, 96%);
614+
}
615+
616+
.hljs-deletion {
617+
color: hsl(14, 100%, 37%);
618+
background-color: hsl(0, 100%, 96%);
619+
}
614620

615621
.hlt-wrapper { font-family: monospace; }
616622
.guide .hlt-wrapper { color: transparent !important; }

0 commit comments

Comments
 (0)
0