Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: northword/zotero-plugin-scaffold
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.7
Choose a base ref
...
head repository: northword/zotero-plugin-scaffold
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.8
Choose a head ref
  • 2 commits
  • 6 files changed
  • 1 contributor

Commits on Feb 27, 2025

  1. Copy the full SHA
    d347df2 View commit details
  2. chore(release): publish v0.2.8

    northword committed Feb 27, 2025
    Copy the full SHA
    f1b07cb View commit details
Showing with 13 additions and 6 deletions.
  1. +1 −1 docs/package.json
  2. +1 −1 package.json
  3. +1 −1 packages/create/package.json
  4. +1 −1 packages/eslint-config/package.json
  5. +8 −1 packages/eslint-config/scripts/typegen.ts
  6. +1 −1 packages/scaffold/package.json
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docs",
"type": "module",
"version": "0.2.7",
"version": "0.2.8",
"private": "true",
"packageManager": "pnpm@10.2.0",
"scripts": {
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zotero-plugin-scaffold",
"type": "module",
"version": "0.2.7",
"version": "0.2.8",
"private": true,
"packageManager": "pnpm@10.2.0",
"author": "northword",
2 changes: 1 addition & 1 deletion packages/create/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-zotero-plugin-scaffold",
"type": "module",
"version": "0.2.7",
"version": "0.2.8",
"private": "true",
"packageManager": "pnpm@10.2.0",
"description": "A scaffold for Zotero plugin development.",
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@zotero-plugin/eslint-config",
"type": "module",
"version": "0.2.7",
"version": "0.2.8",
"packageManager": "pnpm@10.2.0",
"description": "ESLint config for zotero plugin.",
"license": "AGPL-3.0-or-later",
9 changes: 8 additions & 1 deletion packages/eslint-config/scripts/typegen.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
import { writeFile } from "node:fs/promises";
import { flatConfigsToRulesDTS } from "eslint-typegen/core";
import { builtinRules } from "eslint/use-at-your-own-risk";
import zotero from "../src";

const dts = await flatConfigsToRulesDTS(
zotero(),
await zotero(
{
overrides: {
plugins: { "": { rules: Object.fromEntries(builtinRules) } },
},
},
),
{ includeAugmentation: false, exportTypeName: "Rules" },
);

2 changes: 1 addition & 1 deletion packages/scaffold/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zotero-plugin-scaffold",
"type": "module",
"version": "0.2.7",
"version": "0.2.8",
"packageManager": "pnpm@10.2.0",
"description": "A scaffold for Zotero plugin development.",
"author": "northword",