rebrand: media-db-sync fork + fix bun test resolution
- manifest/manifest-beta/package.json → id media-db-sync, v0.1.0 - pluginName const → media-db-sync - tsconfig: baseUrl (bun test needs it for packages/* paths) + ignoreDeprecations 6.0 - upstream tests were broken on clean checkout (module resolution) → 31/31 pass now
This commit is contained in:
parent
65754270ad
commit
071c76862a
5 changed files with 17 additions and 17 deletions
|
|
@ -1,11 +1,10 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-media-db-plugin",
|
"id": "media-db-sync",
|
||||||
"name": "Media DB",
|
"name": "Media DB Sync",
|
||||||
"version": "0.8.0-canary.20260703T094912",
|
"version": "0.1.0-beta.1",
|
||||||
"minAppVersion": "1.12.0",
|
"minAppVersion": "1.12.0",
|
||||||
"description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.",
|
"description": "Media library with automatic metadata enrichment, periodic sync, and watch-status automation. Fork of Media DB by Moritz Jung.",
|
||||||
"author": "Moritz Jung",
|
"author": "Afiq Zudin Hadi",
|
||||||
"authorUrl": "https://www.moritzjung.dev",
|
"authorUrl": "https://github.com/afiqzudinhadi",
|
||||||
"fundingUrl": "https://github.com/sponsors/mProjectsCode",
|
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,10 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-media-db-plugin",
|
"id": "media-db-sync",
|
||||||
"name": "Media DB",
|
"name": "Media DB Sync",
|
||||||
"version": "0.8.0",
|
"version": "0.1.0",
|
||||||
"minAppVersion": "1.12.0",
|
"minAppVersion": "1.12.0",
|
||||||
"description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.",
|
"description": "Media library with automatic metadata enrichment, periodic sync, and watch-status automation. Fork of Media DB by Moritz Jung.",
|
||||||
"author": "Moritz Jung",
|
"author": "Afiq Zudin Hadi",
|
||||||
"authorUrl": "https://www.moritzjung.dev",
|
"authorUrl": "https://github.com/afiqzudinhadi",
|
||||||
"fundingUrl": "https://github.com/sponsors/mProjectsCode",
|
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "obsidian-media-db-plugin",
|
"name": "media-db-sync",
|
||||||
"version": "0.8.0",
|
"version": "0.1.0",
|
||||||
"description": "A plugin that can query multiple APIs for movies, series, anime, manga, books, comics, games, music and wiki articles, and import them into your vault.",
|
"description": "A plugin that can query multiple APIs for movies, series, anime, manga, books, comics, games, music and wiki articles, and import them into your vault.",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import type { TFile, TFolder, App } from 'obsidian';
|
||||||
import { requestUrl } from 'obsidian';
|
import { requestUrl } from 'obsidian';
|
||||||
import type { MediaTypeModel } from 'packages/obsidian/src/models/MediaTypeModel';
|
import type { MediaTypeModel } from 'packages/obsidian/src/models/MediaTypeModel';
|
||||||
|
|
||||||
export const pluginName: string = 'obsidian-media-db-plugin';
|
export const pluginName: string = 'media-db-sync';
|
||||||
export const contactEmail: string = 'm.projects.code@gmail.com';
|
export const contactEmail: string = 'm.projects.code@gmail.com';
|
||||||
export const mediaDbTag: string = 'mediaDB';
|
export const mediaDbTag: string = 'mediaDB';
|
||||||
export const mediaDbVersion: string = '0.8.0';
|
export const mediaDbVersion: string = '0.8.0';
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"baseUrl": ".",
|
||||||
|
"ignoreDeprecations": "6.0",
|
||||||
"paths": {
|
"paths": {
|
||||||
"packages/*": ["./packages/*"],
|
"packages/*": ["./packages/*"],
|
||||||
"tests/*": ["./tests/*"]
|
"tests/*": ["./tests/*"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue