From 6238cfdaa1b3362e240a5df1176c3744a7f2e39f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Dec 2022 20:20:27 +0000 Subject: [PATCH] Bump liquidjs from 9.15.0 to 10.0.0 Bumps [liquidjs](https://github.com/harttle/liquidjs) from 9.15.0 to 10.0.0. - [Release notes](https://github.com/harttle/liquidjs/releases) - [Changelog](https://github.com/harttle/liquidjs/blob/master/CHANGELOG.md) - [Commits](https://github.com/harttle/liquidjs/compare/v9.15.0...v10.0.0) --- updated-dependencies: - dependency-name: liquidjs dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++-- package.json | 230 +++++++++++++++++++++++----------------------- 2 files changed, 123 insertions(+), 123 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3f3269f..6a45eb8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "guid-typescript": "^1.0.9", "inversify": "^5.0.1", "keytar": "^6.0.1", - "liquidjs": "^9.15.0", + "liquidjs": "^10.0.0", "reflect-metadata": "^0.1.13" }, "devDependencies": { @@ -1372,15 +1372,15 @@ } }, "node_modules/liquidjs": { - "version": "9.15.0", - "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-9.15.0.tgz", - "integrity": "sha512-wRPNfMx6X3GGEDqTlBpw7VMo8ylKkzLYTcd7eeaDeYnZyR5BqUgF9tZy3FdPCHV2N/BassGKmlmlpJiRXGFOqg==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.0.0.tgz", + "integrity": "sha512-uY3fKqBSRmnat0wB5qWk0W5N5iT78OUhuIXNRiMfhYQ3p35al9mEWKQ68/Z+WD54V2upaxEM8nHaZ6o1B8WCMA==", "bin": { "liquid": "bin/liquid.js", "liquidjs": "bin/liquid.js" }, "engines": { - "node": ">=4.8.7" + "node": ">=14" }, "funding": { "type": "opencollective", @@ -3870,9 +3870,9 @@ } }, "liquidjs": { - "version": "9.15.0", - "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-9.15.0.tgz", - "integrity": "sha512-wRPNfMx6X3GGEDqTlBpw7VMo8ylKkzLYTcd7eeaDeYnZyR5BqUgF9tZy3FdPCHV2N/BassGKmlmlpJiRXGFOqg==" + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.0.0.tgz", + "integrity": "sha512-uY3fKqBSRmnat0wB5qWk0W5N5iT78OUhuIXNRiMfhYQ3p35al9mEWKQ68/Z+WD54V2upaxEM8nHaZ6o1B8WCMA==" }, "locate-path": { "version": "6.0.0", diff --git a/package.json b/package.json index 79921f5..ab54e95 100644 --- a/package.json +++ b/package.json @@ -1,115 +1,115 @@ -{ - "name": "clipimg-vscode", - "displayName": "ClipImg", - "description": "Extension that provides the ability to upload image from clipboard to Azure Storage", - "publisher": "gep13", - "version": "0.1.0", - "icon": "images/clipimg.png", - "license": "MIT", - "galleryBanner": { - "color": "#DCEBFC", - "theme": "light" - }, - "bugs": { - "url": "https://github.com/gep13-oss/clipimg-vscode/issues" - }, - "homepage": "https://github.com/gep13-oss/clipimg-vscode", - "repository": { - "type": "git", - "url": "https://github.com/gep13-oss/clipimg-vscode" - }, - "engines": { - "vscode": "^1.48.0" - }, - "categories": [ - "Other" - ], - "activationEvents": [ - "onCommand:extension.clipImg" - ], - "main": "./out/extension.js", - "contributes": { - "commands": [ - { - "command": "extension.clipImg", - "title": "Paste Image as Markdown" - } - ], - "keybindings": [ - { - "command": "extension.clipImg", - "key": "ctrl+alt+v", - "mac": "ctrl+cmd+v" - } - ], - "configuration": { - "title": "ClipImg", - "properties": { - "clipImg.storageAccountName": { - "type": [ - "string", - "null" - ], - "default": null, - "description": "Specifies the storage account name to use." - }, - "clipImg.storageAccountContainer": { - "type": [ - "string", - "null" - ], - "default": "clipimg-vscode", - "description": "Specifies the storage account container to use." - }, - "clipImg.templateMarkdown": { - "type": [ - "string", - "null" - ], - "default": "![{{alt}}]({{uri}})", - "description": "Specifies the markdown tag template to use (available outputs: alt, uri)." - }, - "clipImg.templateBlobName": { - "type": [ - "string", - "null" - ], - "default": "{{\"now\" | date: \"%Y/%m/%d\"}}/{{filename}}", - "description": "Specifies the blob filename template to use (available outputs: filename)." - }, - "clipImg.templateBlobUri": { - "type": [ - "string", - "null" - ], - "default": "{{uri}}?{{sas}}", - "description": "Specifies the blob uri template to use (available outputs: container, blob, uri, sas, filename)." - } - } - } - }, - "scripts": { - "vscode:prepublish": "npm run compile", - "compile": "tsc -p ./", - "watch": "tsc -watch -p ./", - "test": "node ./out/test/runTest.js" - }, - "devDependencies": { - "@types/glob": "^7.1.3", - "@types/mocha": "^8.0.3", - "@types/node": "^14.6.4", - "@types/vscode": "^1.48.0", - "mocha": "^8.1.3", - "tslint": "^6.1.3", - "typescript": "^4.0.2", - "vscode-test": "^1.4.0" - }, - "dependencies": { - "@azure/storage-blob": "^12.9.0", - "guid-typescript": "^1.0.9", - "inversify": "^5.0.1", - "keytar": "^6.0.1", - "liquidjs": "^9.15.0", - "reflect-metadata": "^0.1.13" - } -} +{ + "name": "clipimg-vscode", + "displayName": "ClipImg", + "description": "Extension that provides the ability to upload image from clipboard to Azure Storage", + "publisher": "gep13", + "version": "0.1.0", + "icon": "images/clipimg.png", + "license": "MIT", + "galleryBanner": { + "color": "#DCEBFC", + "theme": "light" + }, + "bugs": { + "url": "https://github.com/gep13-oss/clipimg-vscode/issues" + }, + "homepage": "https://github.com/gep13-oss/clipimg-vscode", + "repository": { + "type": "git", + "url": "https://github.com/gep13-oss/clipimg-vscode" + }, + "engines": { + "vscode": "^1.48.0" + }, + "categories": [ + "Other" + ], + "activationEvents": [ + "onCommand:extension.clipImg" + ], + "main": "./out/extension.js", + "contributes": { + "commands": [ + { + "command": "extension.clipImg", + "title": "Paste Image as Markdown" + } + ], + "keybindings": [ + { + "command": "extension.clipImg", + "key": "ctrl+alt+v", + "mac": "ctrl+cmd+v" + } + ], + "configuration": { + "title": "ClipImg", + "properties": { + "clipImg.storageAccountName": { + "type": [ + "string", + "null" + ], + "default": null, + "description": "Specifies the storage account name to use." + }, + "clipImg.storageAccountContainer": { + "type": [ + "string", + "null" + ], + "default": "clipimg-vscode", + "description": "Specifies the storage account container to use." + }, + "clipImg.templateMarkdown": { + "type": [ + "string", + "null" + ], + "default": "![{{alt}}]({{uri}})", + "description": "Specifies the markdown tag template to use (available outputs: alt, uri)." + }, + "clipImg.templateBlobName": { + "type": [ + "string", + "null" + ], + "default": "{{\"now\" | date: \"%Y/%m/%d\"}}/{{filename}}", + "description": "Specifies the blob filename template to use (available outputs: filename)." + }, + "clipImg.templateBlobUri": { + "type": [ + "string", + "null" + ], + "default": "{{uri}}?{{sas}}", + "description": "Specifies the blob uri template to use (available outputs: container, blob, uri, sas, filename)." + } + } + } + }, + "scripts": { + "vscode:prepublish": "npm run compile", + "compile": "tsc -p ./", + "watch": "tsc -watch -p ./", + "test": "node ./out/test/runTest.js" + }, + "devDependencies": { + "@types/glob": "^7.1.3", + "@types/mocha": "^8.0.3", + "@types/node": "^14.6.4", + "@types/vscode": "^1.48.0", + "mocha": "^8.1.3", + "tslint": "^6.1.3", + "typescript": "^4.0.2", + "vscode-test": "^1.4.0" + }, + "dependencies": { + "@azure/storage-blob": "^12.9.0", + "guid-typescript": "^1.0.9", + "inversify": "^5.0.1", + "keytar": "^6.0.1", + "liquidjs": "^10.0.0", + "reflect-metadata": "^0.1.13" + } +}