Skip to content

Commit

Permalink
release: 0.1.10
Browse files Browse the repository at this point in the history
- 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
inhumantsar committed May 7, 2024
1 parent a4cba63 commit 0eeeae7
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 57 deletions.
18 changes: 9 additions & 9 deletions manifest-beta.json
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
}
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "slurp",
"name": "Slurp",
"version": "0.1.9",
"version": "0.1.10",
"minAppVersion": "0.15.0",
"description": "Slurps webpages and saves them as clean, uncluttered Markdown.",
"author": "inhumantsar",
Expand Down
90 changes: 45 additions & 45 deletions package.json
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"
}
}
5 changes: 3 additions & 2 deletions versions.json
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"
}

0 comments on commit 0eeeae7

Please sign in to comment.