Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudinary-bot committed Sep 26, 2021
1 parent cde9d2e commit 21384b0
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 9 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
1.0.0 / 2021-09-26
==================

Other changes
================
* Add getConfig and remove un-needed property in Cloudinary (#443)
* Add an eslint rule for import file extensions (#438)
* Add package.exports (#433)
* add js extension to imports (#436)
* Inject package version during build instead of importing it from package(#434)
* Rename JSDOC Reference website to URL-GEN instead of Base (#432)
* Remove dependency on lodash.clonedeep (#429)

1.0.0-beta.5 / 2021-09-01
==================

Expand Down
19 changes: 14 additions & 5 deletions __DOCS__/JSDocTemplate/template/static/js/prism.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ var Prism = (function (_self) {
// at _.util.currentScript (http://localhost/components/prism-core.js:119:5)
// at Global code (http://localhost/components/prism-core.js:606:1)

var src = (/at [^(\r\n]*\((.*):.+:.+\)$/i.exec(err.stack) || [])[1];
var src = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(err.stack) || [])[1];
if (src) {
var scripts = document.getElementsByTagName('script');
for (var i in scripts) {
Expand Down Expand Up @@ -1231,8 +1231,14 @@ if (typeof global !== 'undefined') {
********************************************** */

Prism.languages.markup = {
'comment': /<!--[\s\S]*?-->/,
'prolog': /<\?[\s\S]+?\?>/,
'comment': {
pattern: /<!--(?:(?!<!--)[\s\S])*?-->/,
greedy: true
},
'prolog': {
pattern: /<\?[\s\S]+?\?>/,
greedy: true
},
'doctype': {
// https://www.w3.org/TR/xml/#NT-doctypedecl
pattern: /<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,
Expand All @@ -1249,11 +1255,14 @@ Prism.languages.markup = {
greedy: true
},
'punctuation': /^<!|>$|[[\]]/,
'doctype-tag': /^DOCTYPE/,
'doctype-tag': /^DOCTYPE/i,
'name': /[^\s<>'"]+/
}
},
'cdata': /<!\[CDATA\[[\s\S]*?\]\]>/i,
'cdata': {
pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
greedy: true
},
'tag': {
pattern: /<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,
greedy: true,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudinary/url-gen",
"version": "1.0.0-beta.5",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "npm run test:types && npm run build && jest --coverage --reporters default && npm run test:size",
Expand All @@ -23,7 +23,7 @@
"build:injectPackageVersion": "ts-node ./scripts/injectPackageVersionToDistFiles.ts",
"build:updatePackageExports": "ts-node scripts/updatePackageJsonExports.ts",
"lint": "npm run lint:src && npm run lint:test",
"lint:src" : "eslint src --color --ext .ts",
"lint:src": "eslint src --color --ext .ts",
"lint:test": "eslint __TESTS__ __TESTS_BUNDLE_SIZE__ --rule 'import/extensions: [0, \"never\"]' --color --ext .ts",
"start": "rollup -c rollup.dev.config.js -w",
"bundlewatch": "bundlewatch --config ./bundlewatch.config.js",
Expand Down Expand Up @@ -115,4 +115,4 @@
"default": "./index.js"
}
}
}
}
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudinary/url-gen",
"version": "1.0.0-beta.5",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "",
Expand Down

0 comments on commit 21384b0

Please sign in to comment.