From a90dc017a15089b68800e8aeb6121057e032ce4c Mon Sep 17 00:00:00 2001 From: Diomede Date: Sun, 16 May 2021 15:53:11 +0200 Subject: [PATCH] Start setting up the plugin metadata --- .gitignore | 2 ++ manifest.json | 14 +++++++------- package.json | 9 ++++++--- styles.css | 4 ---- 4 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 2fd7c5e..663d24a 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ main.js # obsidian data.json + +.vscode \ No newline at end of file diff --git a/manifest.json b/manifest.json index 4ca4889..465f5a2 100644 --- a/manifest.json +++ b/manifest.json @@ -1,10 +1,10 @@ { - "id": "obsidian-sample-plugin", - "name": "Sample Plugin", - "version": "1.0.1", + "id": "liquid-templates", + "name": "Liquid Templates", + "version": "0.1.0", "minAppVersion": "0.9.12", - "description": "This is a sample plugin for Obsidian. This plugin demonstrates some of the capabilities of the Obsidian API.", - "author": "Obsidian", - "authorUrl": "https://obsidian.md/about", - "isDesktopOnly": false + "description": "Empower your template with LiquidJS tags", + "author": "diomedet", + "authorUrl": "https://diomedet.com/", + "isDesktopOnly": true } diff --git a/package.json b/package.json index 29e2406..a38bc76 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "obsidian-sample-plugin", - "version": "0.12.0", - "description": "This is a sample plugin for Obsidian (https://obsidian.md)", + "name": "liquid-templates", + "version": "0.1.0", + "description": "Empower your template with LiquidJS tags", "main": "main.js", "scripts": { "dev": "rollup --config rollup.config.js -w", @@ -19,5 +19,8 @@ "rollup": "^2.32.1", "tslib": "^2.2.0", "typescript": "^4.2.4" + }, + "dependencies": { + "liquidjs": "^9.25.0" } } diff --git a/styles.css b/styles.css index cfd0fd7..e69de29 100644 --- a/styles.css +++ b/styles.css @@ -1,4 +0,0 @@ -/* Sets all the text color to red! */ -body { - color: red; -}