Add type definitions for Electron Progress Bar#49026
Add type definitions for Electron Progress Bar#49026elibarzilay merged 9 commits intoDefinitelyTyped:masterfrom samchouse:electron-progressbar
Conversation
|
@xenfo Thank you for submitting this PR! I see this is your first time submitting to DefinitelyTyped 👋 — I'm the local bot who will help you through the process of getting things through. This is a live comment which I will keep updated. 1 package in this PRCode ReviewsThis PR adds a new definition, so it needs to be reviewed by a DT maintainer before it can be merged. Status
Once every item on this list is checked, I'll ask you for permission to merge and publish the changes. Diagnostic Information: What the bot saw about this PR{
"type": "info",
"now": "-",
"pr_number": 49026,
"author": "Xenfo",
"owners": [],
"dangerLevel": "ScopedAndConfiguration",
"headCommitAbbrOid": "2474fc2",
"headCommitOid": "2474fc284719c4dd681c260e6726847c575cdaa8",
"mergeIsRequested": false,
"stalenessInDays": 0,
"lastPushDate": "2020-10-22T21:48:00.000Z",
"lastCommentDate": "2020-10-23T21:36:30.000Z",
"maintainerBlessed": false,
"reviewLink": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/49026/files",
"hasMergeConflict": false,
"authorIsOwner": false,
"isFirstContribution": true,
"popularityLevel": "Well-liked by everyone",
"newPackages": [
"electron-progressbar"
],
"packages": [
"electron-progressbar"
],
"files": [
{
"path": "types/electron-progressbar/electron-progressbar-tests.ts",
"kind": "test",
"package": "electron-progressbar"
},
{
"path": "types/electron-progressbar/index.d.ts",
"kind": "definition",
"package": "electron-progressbar"
},
{
"path": "types/electron-progressbar/package.json",
"kind": "package-meta-ok",
"package": "electron-progressbar"
},
{
"path": "types/electron-progressbar/tsconfig.json",
"kind": "package-meta",
"package": "electron-progressbar",
"suspect": "not the required form"
},
{
"path": "types/electron-progressbar/tslint.json",
"kind": "package-meta-ok",
"package": "electron-progressbar"
}
],
"hasDismissedReview": false,
"ciResult": "pass",
"lastReviewDate": "2020-10-23T20:07:13.000Z",
"firstApprovalDate": "2020-10-23T20:07:13.000Z",
"reviewersWithStaleReviews": [],
"approvalFlags": 1,
"isChangesRequested": false
} |
|
🔔 @xenfo — you're the only owner, but it would still be good if you find someone to review this PR in the next few days, otherwise a maintainer will look at it. (And if you do find someone, maybe even recruit them to be a second owner to make future changes easier...) |
|
@xenfo The CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! |
|
@xenfo The CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! |
|
@xenfo The CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! |
|
👋 Hi there! I’ve run some quick measurements against master and your PR. These metrics should help the humans reviewing this PR gauge whether it might negatively affect compile times or editor responsiveness for users who install these typings. Let’s review the numbers, shall we? These typings are for a package that doesn’t yet exist on master, so I don’t have anything to compare against yet! In the future, I’ll be able to compare PRs to electron-progressbar with its source on master. Comparison details 📊
|
|
@xenfo The CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! |
Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com>
Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com>
|
@peterblazejewicz Thank you for reviewing this PR! The author has pushed new commits since your last review. Could you take another look and submit a fresh review? |
|
How many people have to approve? |
|
I just published |
Please fill in this template.
Use a meaningful title for the pull request. Include the name of the package modified.
Test the change in your own code. (Compile and run.)
Add or edit tests to reflect the change. (Run with
npm test YOUR_PACKAGE_NAME.)Follow the advice from the readme.
Avoid common mistakes.
Run
npm run lint package-name(ortscif notslint.jsonis present).Select one of these and delete the others:
If adding a new definition:
.d.tsfiles generated via--declarationdts-gen --dt, not by basing it on an existing project.tslint.jsonshould be present and it shouldn't have any additional or disabling of rules. Just content as{ "extends": "dtslint/dt.json" }. If for reason the some rule need to be disabled, disable it for that line using// tslint:disable-next-line [ruleName]and not for whole package so that the need for disabling can be reviewed.tsconfig.jsonshould havenoImplicitAny,noImplicitThis,strictNullChecks, andstrictFunctionTypesset totrue.