new release 1.5.4

This commit is contained in:
Yaotian-Liu 2023-10-22 23:09:44 -07:00
parent f6e04024f6
commit 5e1d57922d
No known key found for this signature in database
GPG key ID: 05D362E51003CFE8
5 changed files with 9 additions and 6 deletions

View file

@ -21,7 +21,9 @@ jobs:
node-version: "18"
- name: Install Dependencies
run: npm install
run: |
npm config set registry http://registry.npmjs.org/
npm install
- name: Build
run: npm run build

View file

@ -1,7 +1,7 @@
{
"id": "pseudocode-in-obs",
"name": "Pseudocode",
"version": "1.5.3",
"version": "1.5.4",
"minAppVersion": "0.15.0",
"description": "This is an obsidian plugin that helps to render a LaTeX-style pseudocode inside a code block.",
"author": "Yaotian Liu",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "pseudocode-in-obs",
"version": "1.5.2",
"version": "1.5.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pseudocode-in-obs",
"version": "1.5.2",
"version": "1.5.4",
"license": "MIT",
"dependencies": {
"katex": "0.11.1",

View file

@ -1,6 +1,6 @@
{
"name": "pseudocode-in-obs",
"version": "1.5.3",
"version": "1.5.4",
"description": "This is an obsidian plugin that helps to render a LaTeX-style pseudocode inside a code block.",
"main": "main.js",
"scripts": {

View file

@ -26,5 +26,6 @@
"1.5.0": "0.15.0",
"1.5.1": "0.15.0",
"1.5.2": "0.15.0",
"1.5.3": "0.15.0"
"1.5.3": "0.15.0",
"1.5.4": "0.15.0"
}