-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: string formatter bug broke metadata parsing - chore: automate release process a bit - refactor: migrate to using npm package for file suggestion component
- Loading branch information
1 parent
a4cba63
commit 0eeeae7
Showing
4 changed files
with
58 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"id": "slurp", | ||
"name": "Slurp", | ||
"version": "0.1.9", | ||
"minAppVersion": "0.15.0", | ||
"description": "Slurps webpages and saves them as clean, uncluttered Markdown.", | ||
"author": "inhumantsar", | ||
"authorUrl": "https://github.com/inhumantsar", | ||
"fundingUrl": "https://ko-fi.com/inhumantsar", | ||
"isDesktopOnly": false | ||
"id": "slurp", | ||
"name": "Slurp", | ||
"version": "0.1.10", | ||
"minAppVersion": "0.15.0", | ||
"description": "Slurps webpages and saves them as clean, uncluttered Markdown.", | ||
"author": "inhumantsar", | ||
"authorUrl": "https://github.com/inhumantsar", | ||
"fundingUrl": "https://ko-fi.com/inhumantsar", | ||
"isDesktopOnly": false | ||
} |
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,46 +1,46 @@ | ||
{ | ||
"name": "slurp", | ||
"version": "0.1.9", | ||
"description": "Slurps webpages and saves them as clean, uncluttered Markdown.", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", | ||
"release-major": "release_type=major node version-bump.mjs", | ||
"release-minor": "release_type=minor node version-bump.mjs", | ||
"release-patch": "release_type=patch node version-bump.mjs", | ||
"release-beta": "release_type=beta node version-bump.mjs" | ||
}, | ||
"keywords": [ | ||
"html-to-markdown", | ||
"readability", | ||
"obsidian", | ||
"obsidian-plugin" | ||
], | ||
"author": "inhumantsar", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@tsconfig/svelte": "^5.0.4", | ||
"@types/js-yaml": "^4.0.9", | ||
"@types/node": "^16.11.6", | ||
"@types/sortablejs": "^1.15.8", | ||
"@typescript-eslint/eslint-plugin": "^6.21.0", | ||
"@typescript-eslint/parser": "^6.21.0", | ||
"builtin-modules": "3.3.0", | ||
"esbuild": "0.17.3", | ||
"esbuild-svelte": "^0.8.0", | ||
"install-local": "^3.0.1", | ||
"obsidian": "latest", | ||
"simple-git": "^3.24.0", | ||
"svelte": "^4.2.13", | ||
"svelte-preprocess": "^5.1.3", | ||
"tslib": "2.4.0", | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^7.6.0" | ||
}, | ||
"dependencies": { | ||
"@mozilla/readability": "^0.5.0", | ||
"obsidian-file-suggestion-component": "^1.0.0", | ||
"yaml": "^2.4.1" | ||
} | ||
} | ||
"name": "slurp", | ||
"version": "0.1.10", | ||
"description": "Slurps webpages and saves them as clean, uncluttered Markdown.", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", | ||
"release-major": "release_type=major node version-bump.mjs", | ||
"release-minor": "release_type=minor node version-bump.mjs", | ||
"release-patch": "release_type=patch node version-bump.mjs", | ||
"release-beta": "release_type=beta node version-bump.mjs" | ||
}, | ||
"keywords": [ | ||
"html-to-markdown", | ||
"readability", | ||
"obsidian", | ||
"obsidian-plugin" | ||
], | ||
"author": "inhumantsar", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@tsconfig/svelte": "^5.0.4", | ||
"@types/js-yaml": "^4.0.9", | ||
"@types/node": "^16.11.6", | ||
"@types/sortablejs": "^1.15.8", | ||
"@typescript-eslint/eslint-plugin": "^6.21.0", | ||
"@typescript-eslint/parser": "^6.21.0", | ||
"builtin-modules": "3.3.0", | ||
"esbuild": "0.17.3", | ||
"esbuild-svelte": "^0.8.0", | ||
"install-local": "^3.0.1", | ||
"obsidian": "latest", | ||
"simple-git": "^3.24.0", | ||
"svelte": "^4.2.13", | ||
"svelte-preprocess": "^5.1.3", | ||
"tslib": "2.4.0", | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^7.6.0" | ||
}, | ||
"dependencies": { | ||
"@mozilla/readability": "^0.5.0", | ||
"obsidian-file-suggestion-component": "^1.0.0", | ||
"yaml": "^2.4.1" | ||
} | ||
} |
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,3 +1,4 @@ | ||
{ | ||
"0.1.0": "0.15.0" | ||
} | ||
"0.1.0": "0.15.0", | ||
"0.1.10": "0.15.0" | ||
} |