zotero-plugin-scaffold 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.d.mts +1 -1
- package/dist/cli.mjs +7 -3
- package/dist/index.d.mts +3 -4
- package/dist/index.mjs +5 -1
- package/dist/shared/{zotero-plugin-scaffold.WLeAAj6o.mjs → zotero-plugin-scaffold.D2qdHZn7.mjs} +2185 -85
- package/dist/shared/{zotero-plugin-scaffold.oqywMJh-.d.mts → zotero-plugin-scaffold.DmiRKKLw.d.mts} +33 -7
- package/package.json +2 -9
package/dist/cli.d.mts
CHANGED
package/dist/cli.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import process from 'node:process';
|
|
2
2
|
import { Command } from 'commander';
|
|
3
|
-
import { E as ExitSignals, C as Config, B as Build, S as Serve, T as Test, R as Release } from './shared/zotero-plugin-scaffold.
|
|
3
|
+
import { E as ExitSignals, C as Config, B as Build, S as Serve, T as Test, R as Release } from './shared/zotero-plugin-scaffold.D2qdHZn7.mjs';
|
|
4
4
|
import { readFile } from 'node:fs/promises';
|
|
5
5
|
import { pathExists } from 'fs-extra';
|
|
6
6
|
import { l as logger } from './shared/zotero-plugin-scaffold.CzBjWbS8.mjs';
|
|
@@ -21,6 +21,11 @@ import 'node:child_process';
|
|
|
21
21
|
import 'std-env';
|
|
22
22
|
import 'bumpp';
|
|
23
23
|
import 'octokit';
|
|
24
|
+
import 'node:os';
|
|
25
|
+
import 'node:url';
|
|
26
|
+
import 'node:assert';
|
|
27
|
+
import 'node:v8';
|
|
28
|
+
import 'node:util';
|
|
24
29
|
import 'chokidar';
|
|
25
30
|
import 'node:net';
|
|
26
31
|
import 'node:buffer';
|
|
@@ -29,10 +34,9 @@ import 'node:events';
|
|
|
29
34
|
import 'xvfb-ts';
|
|
30
35
|
import 'node:http';
|
|
31
36
|
import 'node:readline';
|
|
32
|
-
import 'node:util';
|
|
33
37
|
|
|
34
38
|
const name = "zotero-plugin-scaffold";
|
|
35
|
-
const version = "0.
|
|
39
|
+
const version = "0.7.0";
|
|
36
40
|
const pkg = {
|
|
37
41
|
name: name,
|
|
38
42
|
version: version};
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { U as UserConfig, O as OverrideConfig, C as Context, B as Base } from './shared/zotero-plugin-scaffold.
|
|
1
|
+
import { U as UserConfig, O as OverrideConfig, C as Context, B as Base, G as GitCommit } from './shared/zotero-plugin-scaffold.DmiRKKLw.mjs';
|
|
2
2
|
import 'hookable';
|
|
3
3
|
import 'esbuild';
|
|
4
4
|
|
|
@@ -36,9 +36,8 @@ declare class Release extends Base {
|
|
|
36
36
|
* then, create or update release (tag is "release"), update `update.json`.
|
|
37
37
|
*/
|
|
38
38
|
run(): Promise<void>;
|
|
39
|
-
getConventionalChangelog(): Promise<string>;
|
|
40
|
-
|
|
41
|
-
getFilteredChangelog(rawLog: string): string;
|
|
39
|
+
getConventionalChangelog(commits: GitCommit[]): Promise<string>;
|
|
40
|
+
getGitDiff(): Promise<GitCommit[]>;
|
|
42
41
|
getChangelog(): Promise<string>;
|
|
43
42
|
private isEnabled;
|
|
44
43
|
exit(): void;
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { B as Build, C as Config, R as Release, S as Serve, T as Test, d as defineConfig } from './shared/zotero-plugin-scaffold.
|
|
1
|
+
export { B as Build, C as Config, R as Release, S as Serve, T as Test, d as defineConfig } from './shared/zotero-plugin-scaffold.D2qdHZn7.mjs';
|
|
2
2
|
import 'c12';
|
|
3
3
|
import 'es-toolkit';
|
|
4
4
|
import 'fs-extra/esm';
|
|
@@ -20,6 +20,10 @@ import 'adm-zip';
|
|
|
20
20
|
import 'node:child_process';
|
|
21
21
|
import 'bumpp';
|
|
22
22
|
import 'octokit';
|
|
23
|
+
import 'node:os';
|
|
24
|
+
import 'node:url';
|
|
25
|
+
import 'node:assert';
|
|
26
|
+
import 'node:v8';
|
|
23
27
|
import 'chokidar';
|
|
24
28
|
import 'node:net';
|
|
25
29
|
import 'node:buffer';
|