Skip to content
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

Migrate deprecation warnings to sass-lang short links #1796

Merged
merged 1 commit into from Sep 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/src/parse/stylesheet.dart
Expand Up @@ -1393,7 +1393,7 @@ abstract class StylesheetParser extends Parser {
"@-moz-document is deprecated and support will be removed in Dart "
"Sass 2.0.0.\n"
"\n"
"For details, see http://bit.ly/MozDocument.",
"For details, see https://sass-lang.com/d/moz-document.",
span: span,
deprecation: true);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/visitor/async_evaluate.dart
Expand Up @@ -1243,7 +1243,7 @@ class _EvaluateVisitor
throw SassFormatException(
"compound selectors may no longer be extended.\n"
"Consider `@extend ${compound.components.join(', ')}` instead.\n"
"See http://bit.ly/ExtendCompound for details.\n",
"See https://sass-lang.com/d/extend-compound for details.\n",
targetText.span);
}

Expand Down
4 changes: 2 additions & 2 deletions lib/src/visitor/evaluate.dart
Expand Up @@ -5,7 +5,7 @@
// DO NOT EDIT. This file was generated from async_evaluate.dart.
// See tool/grind/synchronize.dart for details.
//
// Checksum: 1481489206d9df595860ec2e1c44729bd8928b90
// Checksum: c70a4193cc291f298f601a5cc371be9eac71fb74
//
// ignore_for_file: unused_import

Expand Down Expand Up @@ -1245,7 +1245,7 @@ class _EvaluateVisitor
throw SassFormatException(
"compound selectors may no longer be extended.\n"
"Consider `@extend ${compound.components.join(', ')}` instead.\n"
"See http://bit.ly/ExtendCompound for details.\n",
"See https://sass-lang.com/d/extend-compound for details.\n",
targetText.span);
}

Expand Down