From 40ae9006bf10ce7f684aef4df4f8b505f73d9d19 Mon Sep 17 00:00:00 2001 From: ivan-lednev Date: Sat, 19 Aug 2023 21:41:28 +0200 Subject: [PATCH] 0.5.0 --- .github/workflows/release.yml | 5 ++++- manifest.json | 2 +- package.json | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d793ecb6..33a7ab15d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,9 +26,12 @@ jobs: run: | echo "::set-output name=tag::$(git describe --abbrev=0 --tags)" + - name: Install dependencies + run: npm install + - name: Build id: build - run: npm install + run: npm run build - name: Package run: | diff --git a/manifest.json b/manifest.json index f3d73fe59..915f252da 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "time-block-planner", "name": "Time Block Planner", - "version": "0.4.0", + "version": "0.5.0", "minAppVersion": "0.16.0", "description": "A day planner with clean UI and readable syntax", "author": "Ivan Lednev", diff --git a/package.json b/package.json index c646f0b14..13a683873 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { "name": "obsidian-day-planner", - "version": "0.3.0", + "version": "0.5.0", "description": "A plugin to help you plan your day and setup pomodoro timers", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs", + "build": "node esbuild.config.mjs production", "lint": "prettier --check src && eslint src", "typescript": "tsc --noEmit", "test": "jest",