Merge pull request #55 from northword/rename-folder

Rename typings and build folder
This commit is contained in:
windingwind 2023-07-02 14:47:54 +08:00 committed by GitHub
commit d274334398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@
"@typescript-eslint/no-non-null-assertion": "off" "@typescript-eslint/no-non-null-assertion": "off"
}, },
"ignorePatterns": [ "ignorePatterns": [
"**/builds/**", "**/build/**",
"**/dist/**", "**/dist/**",
"**/node_modules/**", "**/node_modules/**",
"**/scripts/**", "**/scripts/**",

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
**/builds **/build
node_modules node_modules
package-lock.json package-lock.json
zotero-cmd.json zotero-cmd.json

View File

@ -4,7 +4,7 @@
}, },
"github": { "github": {
"release": true, "release": true,
"assets": ["builds/*.xpi"] "assets": ["build/*.xpi"]
}, },
"hooks": { "hooks": {
"after:bump": "npm run build", "after:bump": "npm run build",

View File

@ -87,7 +87,7 @@ function dateFormat(fmt, date) {
async function main() { async function main() {
const t = new Date(); const t = new Date();
const buildTime = dateFormat("YYYY-mm-dd HH:MM:SS", t); const buildTime = dateFormat("YYYY-mm-dd HH:MM:SS", t);
const buildDir = "builds"; const buildDir = "build";
console.log( console.log(
`[Build] BUILD_DIR=${buildDir}, VERSION=${version}, BUILD_TIME=${buildTime}, ENV=${[ `[Build] BUILD_DIR=${buildDir}, VERSION=${version}, BUILD_TIME=${buildTime}, ENV=${[

View File

@ -45,7 +45,7 @@ class Addon {
* and comment line 31: `ztoolkit: new ZoteroToolkit(),`. * and comment line 31: `ztoolkit: new ZoteroToolkit(),`.
* 2. Uncomment this file's line 10: `ztoolkit: MyToolkit;` in this file * 2. Uncomment this file's line 10: `ztoolkit: MyToolkit;` in this file
* and comment line 11: `ztoolkit: ZoteroToolkit;`. * and comment line 11: `ztoolkit: ZoteroToolkit;`.
* 3. Uncomment `./typing/global.d.ts` line 12: `declare const ztoolkit: import("../src/addon").MyToolkit;` * 3. Uncomment `../typings/global.d.ts` line 12: `declare const ztoolkit: import("../src/addon").MyToolkit;`
* and comment line 13: `declare const ztoolkit: import("zotero-plugin-toolkit").ZoteroToolkit;`. * and comment line 13: `declare const ztoolkit: import("zotero-plugin-toolkit").ZoteroToolkit;`.
* *
* You can now add the modules under the `MyToolkit` class. * You can now add the modules under the `MyToolkit` class.

View File

@ -7,6 +7,6 @@
"skipLibCheck": true, "skipLibCheck": true,
"strict": true "strict": true
}, },
"include": ["src", "typing", "node_modules/zotero-types"], "include": ["src", "typings", "node_modules/zotero-types"],
"exclude": ["builds", "addon"] "exclude": ["build", "addon"]
} }