From cf43f0d8511c50a0967f2265f7308498d6722050 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Mon, 9 Mar 2020 12:17:09 -0700 Subject: [PATCH] Add a release header (#961) This got dropped in the move to cli_pkg. Closes #944 --- tool/grind.dart | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tool/grind.dart b/tool/grind.dart index 8740f73c..5eb558b6 100644 --- a/tool/grind.dart +++ b/tool/grind.dart @@ -34,6 +34,17 @@ void main(List 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); }