Skip to content

Commit ef9d450

Browse files
author
cloudinary-bot
committed
Version 1.8.7
1 parent 8baf8ca commit ef9d450

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.8.7 / 2022-12-05
2+
==================
3+
4+
* Added import statements template to configuration file
5+
* Updated readme info about supported Node.js versions
6+
17
1.8.6 / 2022-08-19
28
==================
39

__DOCS__/JSDocTemplate/template/static/js/prism.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,10 @@ Prism.languages.markup = {
13251325
pattern: /^=/,
13261326
alias: 'attr-equals'
13271327
},
1328-
/"|'/
1328+
{
1329+
pattern: /^(\s*)["']|["']$/,
1330+
lookbehind: true
1331+
}
13291332
]
13301333
}
13311334
},
@@ -1468,7 +1471,7 @@ Prism.languages.rss = Prism.languages.xml;
14681471
Prism.languages.css = {
14691472
'comment': /\/\*[\s\S]*?\*\//,
14701473
'atrule': {
1471-
pattern: /@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,
1474+
pattern: RegExp('@[\\w-](?:' + /[^;{\s"']|\s+(?!\s)/.source + '|' + string.source + ')*?' + /(?:;|(?=\s*\{))/.source),
14721475
inside: {
14731476
'rule': /^@[\w-]+/,
14741477
'selector-function-argument': {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudinary/url-gen",
3-
"version": "1.8.6",
3+
"version": "1.8.7",
44
"description": "",
55
"scripts": {
66
"test": "npm run build && npm run test:types && npm run build && jest --coverage --reporters default && npm run test:size",

0 commit comments

Comments
 (0)