chore: use public repository metadata#6
Open
pqmashiro-commits wants to merge 1 commit into
Open
Conversation
Update repository.url from legacy git:// to git+https://.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
repository.urlfrom the legacygit://protocol to a public HTTPS git URL.Why
The published
gulp-dart-sass@1.1.0package metadata reports:{ "type": "git", "url": "git://github.com/mattdsteele/gulp-dart-sass.git" }The current source
package.jsonhas the same legacy transport, without the trailing.git:{ "type": "git", "url": "git://github.com/mattdsteele/gulp-dart-sass" }Using
git+https://github.com/mattdsteele/gulp-dart-sass.gitmakes the package metadata easier to consume in environments where unauthenticatedgit://traffic may be blocked or discouraged.Contributing note
The contributing guide asks contributors to open an issue before a PR, but GitHub reports Issues are disabled for this repository (
has_issues: false). I opened the PR directly because this is a small metadata-only cleanup.I did not update
CHANGELOG.mdbecause this does not change package runtime behavior, dependencies, public API, or generated output.Verification
node -e "const p=require('./package.json'); if (p.repository.url !== 'git+https://github.com/mattdsteele/gulp-dart-sass.git') { console.error(p.repository); process.exit(1) } console.log(p.name, p.version, p.repository.url)" git diff --check pnpm pack --dry-run --jsonObserved metadata check output:
pnpm pack --dry-run --jsoncompleted successfully.git diff --checkreported no whitespace errors, aside from the normal Windows LF-to-CRLF working-copy warning.