mirror of
https://github.com/qiuos/linkmind.git
synced 2026-07-22 07:08:17 +00:00
Release v0.2.0
Replace builtin-modules with node:module, remove CSS !important. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
44b695faae
commit
b7d04b23d8
6 changed files with 9 additions and 23 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import esbuild from "esbuild";
|
||||
import process from "node:process";
|
||||
import builtins from "builtin-modules";
|
||||
import { builtinModules as builtins } from "node:module";
|
||||
|
||||
const prod = process.argv[2] === "production";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "linkmind",
|
||||
"name": "linkmind",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"minAppVersion": "1.5.0",
|
||||
"description": "Edit Markdown as a clean, keyboard-friendly mind map.",
|
||||
"author": "pikaqiu",
|
||||
|
|
|
|||
18
package-lock.json
generated
18
package-lock.json
generated
|
|
@ -1,16 +1,15 @@
|
|||
{
|
||||
"name": "linkmind",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "linkmind",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.11.30",
|
||||
"builtin-modules": "^3.3.0",
|
||||
"esbuild": "^0.25.12",
|
||||
"obsidian": "^1.5.12",
|
||||
"typescript": "^5.4.5"
|
||||
|
|
@ -528,19 +527,6 @@
|
|||
"@types/estree": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/builtin-modules": {
|
||||
"version": "3.3.0",
|
||||
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz",
|
||||
"integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/crelt": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "linkmind",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"description": "An editor-first mind map plugin for Obsidian that syncs with plain Markdown.",
|
||||
"main": "plugin/main.js",
|
||||
"scripts": {
|
||||
|
|
@ -16,7 +16,6 @@
|
|||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.11.30",
|
||||
"builtin-modules": "^3.3.0",
|
||||
"esbuild": "^0.25.12",
|
||||
"obsidian": "^1.5.12",
|
||||
"typescript": "^5.4.5"
|
||||
|
|
|
|||
|
|
@ -331,8 +331,8 @@
|
|||
border-width: 2.5px;
|
||||
}
|
||||
|
||||
.linkmind-node.is-borderless {
|
||||
border-color: transparent !important;
|
||||
.linkmind-node.is-borderless.is-borderless {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.linkmind-node.is-dragging {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"0.1.0": "1.5.0"
|
||||
"0.1.0": "1.5.0",
|
||||
"0.2.0": "1.5.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue