-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add download-git-repo #56874
base: master
Are you sure you want to change the base?
Add download-git-repo #56874
Conversation
@LinqLover Thank you for submitting this PR! This is a live comment which I will keep updated. 1 package in this PR
Code ReviewsThis PR adds a new definition, so it needs to be reviewed by a DT maintainer before it can be merged. You can test the changes of this PR in the Playground. 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": 56874,
"author": "LinqLover",
"headCommitOid": "3efba07e66b576a9a9c09f33658547a0a94c99ee",
"mergeBaseOid": "bd82c8c73308f3e343588f37045d5b8c921a4663",
"lastPushDate": "2021-11-21T10:57:46.000Z",
"lastActivityDate": "2022-01-15T19:44:51.000Z",
"hasMergeConflict": false,
"isFirstContribution": false,
"tooManyFiles": false,
"hugeChange": false,
"popularityLevel": "Well-liked by everyone",
"pkgInfo": [
{
"name": "download-git-repo",
"kind": "add",
"files": [
{
"path": "types/download-git-repo/download-git-repo-tests.ts",
"kind": "test"
},
{
"path": "types/download-git-repo/index.d.ts",
"kind": "definition"
},
{
"path": "types/download-git-repo/tsconfig.json",
"kind": "package-meta-ok"
},
{
"path": "types/download-git-repo/tslint.json",
"kind": "package-meta",
"suspect": "not [the expected form](https://github.com/DefinitelyTyped/DefinitelyTyped#user-content-linter-tslintjson) (check: `extends`)"
}
],
"owners": [],
"addedOwners": [
"DefinitelyTyped"
],
"deletedOwners": [],
"popularityLevel": "Well-liked by everyone"
}
],
"reviews": [
{
"type": "stale",
"reviewer": "peterblazejewicz",
"date": "2021-11-21T10:57:04.000Z",
"abbrOid": "228bed7"
}
],
"mainBotCommentID": 955043546,
"ciResult": "fail",
"ciUrl": "https://github.com/DefinitelyTyped/DefinitelyTyped/commit/3efba07e66b576a9a9c09f33658547a0a94c99ee/checks?check_suite_id=4420462707"
} |
🔔 @LinqLover — there are no owners, 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...) |
@LinqLover The CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! Note: builds which are failing do not end up on the list of PRs for the DT maintainers to review. |
From the CI failure:
Please help! Am I supposed to file another PR against https://github.com/microsoft/dtslint/blob/6a0d0a8e626422018afcd920b1167f9c3dea6f86/src/index.ts#L237-L246 and add |
This package already exists on npm, so if I understand the matter correctly, it should be allowed here, too: https://www.npmjs.com/package/download-git-repo Complements ad7eb60. Required for DefinitelyTyped/DefinitelyTyped#56874.
The assertion is not a rule, so it cannot be bypassed in DT config. Required for: DefinitelyTyped/DefinitelyTyped#56874 Thanks! /cc @LinqLover
Hey, sorry for delay, just saw this. |
'no-consecutive-blank-lines'
@LinqLover The CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! Note: builds which are failing do not end up on the list of PRs for the DT maintainers to review. |
Thank you very much @peterblazejewicz, is there anything left to do at my end? :) |
I think, no, just wait for upstream change, thx! |
The assertion is not a rule, so it cannot be bypassed in DT config. - 'download-git-repo' - 'download-package-tarball' Both are published to NPM registry already. Required for: DefinitelyTyped/DefinitelyTyped#56874 DefinitelyTyped/DefinitelyTyped#56875 Thanks! /cc @LinqLover
@LinqLover I haven't seen any activity on this PR in more than three weeks, and it still has problems that prevent it from being merged. The PR will be closed on Dec 21st (in a week) if the issues aren't addressed. |
No, this PR should not be canceled. Please refer to the issue in microsoft/dtslint#350 (comment). |
@LinqLover I haven't seen any activity on this PR in more than three weeks, and it still has problems that prevent it from being merged. The PR will be closed on Jan 21st (in a week) if the issues aren't addressed. |
No, this PR should not be canceled. Please refer to the issue in microsoft/dtslint#350 (comment). |
@LinqLover eventually change to draft |
@peterblazejewicz Doesn't a draft indicate "don't look at me, I'm not yet done"? This PR is ready from my side. We only need to get the infrastructure fixed so that the typing package can actually be published |
there is no other way to stop Ci builds to be run from time to time, I understand MS folks will look into how to change how this works now (reading Sander's comment) |
Well, I hope that the PR will not completely do down as a draft PR. There should be a label that prevents the CI builds from commenting again and again. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After #67332, this PR will need to be updated to include an .npmignore
. See https://github.com/DefinitelyTyped/DefinitelyTyped#npmignore
Please fill in this template.
npm test <package to test>
..d.ts
files generated via--declaration
dts-gen --dt
, not by basing it on an existing project.tslint.json
should contain{ "extends": "dtslint/dt.json" }
, and no additional rules.tsconfig.json
should havenoImplicitAny
,noImplicitThis
,strictNullChecks
, andstrictFunctionTypes
set totrue
.Requires #56873!