We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baa7eda commit 783b31aCopy full SHA for 783b31a
1 file changed
README.md
@@ -23,8 +23,6 @@ pnpm dlx zotero-plugin create
23
24
#### From NPM
25
26
-> WIP
27
-
28
```bash
29
npm install -D zotero-plugin-scaffold
30
@@ -66,7 +64,7 @@ You can import `defineConfig` in js module to get type hints. If no value is spe
66
64
import { defineConfig } from "zotero-plugin-scaffold";
67
65
68
export default defineConfig({
69
- placeholders: {
+ define: {
70
addonName: "Test Addon for Zotero",
71
addonID: "",
72
addonRef: "",
@@ -137,7 +135,7 @@ import { Build, Config } from "zotero-plugin-scaffold";
137
135
138
136
const config = await Config.loadConfig();
139
140
-const Builder = new Build(config, "production");
+const Builder = new Build(config);
141
await Builder.run();
142
```
143
0 commit comments