-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added commad for copying note URL to clipboard
- Loading branch information
Ole Eskild Steensen
committed
Mar 1, 2022
1 parent
ca72557
commit 0374ce8
Showing
4 changed files
with
94 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
{ | ||
"name": "obsidian-garden", | ||
"version": "1.0.0", | ||
"description": "A plugin used for publishing notes to personal site", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"dev1": "parcel main.ts", | ||
"build": "node esbuild.config.mjs production" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^16.11.6", | ||
"@typescript-eslint/eslint-plugin": "^5.2.0", | ||
"@typescript-eslint/parser": "^5.2.0", | ||
"builtin-modules": "^3.2.0", | ||
"esbuild": "0.13.12", | ||
"obsidian": "^0.12.17", | ||
"tslib": "2.3.1", | ||
"typescript": "4.4.4" | ||
}, | ||
"dependencies": { | ||
"@octokit/core": "^3.5.1", | ||
"js-base64": "^3.7.2" | ||
} | ||
} | ||
"name": "obsidian-garden", | ||
"version": "1.0.0", | ||
"description": "A plugin used for publishing notes to personal site", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"dev1": "parcel main.ts", | ||
"build": "node esbuild.config.mjs production" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^16.11.6", | ||
"@typescript-eslint/eslint-plugin": "^5.2.0", | ||
"@typescript-eslint/parser": "^5.2.0", | ||
"builtin-modules": "^3.2.0", | ||
"esbuild": "0.13.12", | ||
"obsidian": "^0.12.17", | ||
"tslib": "2.3.1", | ||
"typescript": "4.4.4" | ||
}, | ||
"dependencies": { | ||
"@octokit/core": "^3.5.1", | ||
"front-matter": "^4.0.2", | ||
"js-base64": "^3.7.2", | ||
"@sindresorhus/slugify": "^1.1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"1.0.1": "0.9.12", | ||
"1.0.0": "0.9.7" | ||
} | ||
"1.2.0": "0.12.0", | ||
"1.1.0": "0.12.0", | ||
"1.0.0": "0.12.0" | ||
} |