From 8bfe656b8886e6a758a8634f53af4d7a30be9cbe Mon Sep 17 00:00:00 2001 From: Alexis Grojean Date: Thu, 16 Jan 2025 13:32:43 +0100 Subject: [PATCH] Fix extension deps --- CHANGELOG.md | 6 ++++++ README.md | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- webpack.config.js | 3 +-- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aec7c9c..3904fc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.2] + +### Fixed + +* Fix extension dependencies (again) + ## [0.9.1] ### Fixed diff --git a/README.md b/README.md index 76d47c3..5e66c63 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,10 @@ This extension contributes the following settings: ## Release Notes +## 0.9.2 + +* Fix extension dependencies (again) + ## 0.9.1 * Fix extension dependencies diff --git a/package-lock.json b/package-lock.json index ae4b02f..26efc80 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ledger-dev-tools", - "version": "0.9.1", + "version": "0.9.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ledger-dev-tools", - "version": "0.9.1", + "version": "0.9.2", "license": "Apache", "dependencies": { "@ltd/j-toml": "^1.38.0", diff --git a/package.json b/package.json index 979e5d2..1776698 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ledger-dev-tools", "displayName": "Ledger Dev Tools", "description": "Tools to accelerate development of apps for Ledger devices.", - "version": "0.9.1", + "version": "0.9.2", "publisher": "LedgerHQ", "license": "Apache", "icon": "resources/ledger-square.png", diff --git a/webpack.config.js b/webpack.config.js index c0fef98..4085f19 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -20,9 +20,8 @@ const extensionConfig = { libraryTarget: "commonjs2", }, externals: { - "vscode": "commonjs vscode", // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/ + vscode: "commonjs vscode", // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/ // modules added here also need to be added in the .vscodeignore file - "@ltd/j-toml": "commonjs @ltd/j-toml", }, resolve: { // support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader