Bump version to 1.1.2: Include XHS URL bug fix from community PR

This commit is contained in:
Lee Bon Chiang 2025-10-19 13:49:35 +08:00
parent 82bc21c79d
commit d0227acee1
4 changed files with 8 additions and 7 deletions

View file

@ -1,12 +1,12 @@
import esbuild from "esbuild";
import process from "process";
import builtins from "builtin-modules";
import {builtinModules} from "module";
const banner =
`/*
* Xiaohongshu Importer plugin
* Author: bnchiang96
* Version: 1.1.1
* Version: 1.1.2
*/
`;
@ -32,7 +32,7 @@ const context = await esbuild.context({
"@lezer/common",
"@lezer/highlight",
"@lezer/lr",
...builtins],
...builtinModules],
format: "cjs",
target: "es2018",
logLevel: "info",

View file

@ -1,7 +1,7 @@
{
"id": "xiaohongshu-importer",
"name": "Xiaohongshu Importer",
"version": "1.1.1",
"version": "1.1.2",
"minAppVersion": "0.15.0",
"description": "Import Xiaohongshu (小红书) notes with media and categorization.",
"author": "bnchiang96",

View file

@ -1,6 +1,6 @@
{
"name": "xiaohongshu-importer",
"version": "1.1.1",
"version": "1.1.2",
"description": "Import Xiaohongshu (小红书) notes with media and categorization into Obsidian.",
"main": "main.js",
"scripts": {

View file

@ -1,3 +1,4 @@
{
"1.0.1": "0.15.0"
}
"1.0.1": "0.15.0",
"1.1.1": "0.15.0"
}