Add a release header (#961)

This got dropped in the move to cli_pkg.

Closes #944
This commit is contained in:
Natalie Weizenbaum 2020-03-09 12:17:09 -07:00 committed by GitHub
parent cb8a048e58
commit cf43f0d851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,17 @@ void main(List<String> args) {
pkg.npmReadme = _readAndResolveMarkdown("package/README.npm.md");
pkg.standaloneName = "dart-sass";
pkg.githubReleaseNotes =
"To install Sass ${pkg.version}, download one of the packages below and "
"[add it to your PATH][], or see [the Sass website][] for full "
"installation instructions.\n"
"\n"
"[add it to your PATH]: https://katiek2.github.io/path-doc/\n"
"[the Sass website]: https://sass-lang.com/install\n"
"\n"
"# Changes\n"
"\n";
pkg.addAllTasks();
grind(args);
}