1 Commits
Author SHA1 Message Date
oqyude d546947e61 some automation
Release / release (push) Has been cancelled
2026-07-11 03:26:31 +03:00
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -1,5 +1,6 @@
import esbuild from 'esbuild';
import process from 'process';
import fs from 'fs';
import builtins from 'builtin-modules';
const banner = `/*
@@ -9,6 +10,11 @@ THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
const prod = process.argv[2] === 'production';
const pkg = JSON.parse(fs.readFileSync('./package.json', 'utf8'));
const manifest = JSON.parse(fs.readFileSync('./manifest.json', 'utf8'));
manifest.version = pkg.version;
fs.writeFileSync('./manifest.json', JSON.stringify(manifest, null, '\t') + '\n');
esbuild
.build({
banner: { js: banner },
+1 -1
View File
@@ -1,7 +1,7 @@
{
"id": "zeroq-qol-modules",
"name": "ZeroQ QoL Modules",
"version": "1.0.3",
"version": "1.1.0",
"minAppVersion": "0.15.0",
"description": "QoL Modules",
"author": "oqyude",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "zeroq-qol-modules",
"version": "1.0.0",
"version": "1.1.0",
"description": "Modular Obsidian plugin with toggleable QoL modules",
"main": "main.js",
"scripts": {