Skip to content

Commit

Permalink
Version 1.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudinary-bot committed Dec 5, 2022
1 parent 8baf8ca commit ef9d450
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.8.7 / 2022-12-05
==================

* Added import statements template to configuration file
* Updated readme info about supported Node.js versions

1.8.6 / 2022-08-19
==================

Expand Down
7 changes: 5 additions & 2 deletions __DOCS__/JSDocTemplate/template/static/js/prism.js
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,10 @@ Prism.languages.markup = {
pattern: /^=/,
alias: 'attr-equals'
},
/"|'/
{
pattern: /^(\s*)["']|["']$/,
lookbehind: true
}
]
}
},
Expand Down Expand Up @@ -1468,7 +1471,7 @@ Prism.languages.rss = Prism.languages.xml;
Prism.languages.css = {
'comment': /\/\*[\s\S]*?\*\//,
'atrule': {
pattern: /@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,
pattern: RegExp('@[\\w-](?:' + /[^;{\s"']|\s+(?!\s)/.source + '|' + string.source + ')*?' + /(?:;|(?=\s*\{))/.source),
inside: {
'rule': /^@[\w-]+/,
'selector-function-argument': {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudinary/url-gen",
"version": "1.8.6",
"version": "1.8.7",
"description": "",
"scripts": {
"test": "npm run build && npm run test:types && npm run build && jest --coverage --reporters default && npm run test:size",
Expand Down

0 comments on commit ef9d450

Please sign in to comment.