From b12b508e79cce0a74262eb5c31f67a1cf1cb57a6 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Tue, 14 Jan 2025 00:00:07 +0000 Subject: [PATCH] Compile sass-parser before deploying (#2489) Previously this deployed an empty package. Closes #2485 --- .github/workflows/release.yml | 1 + pkg/sass-parser/CHANGELOG.md | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index acd870538..34dff63ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -137,6 +137,7 @@ jobs: - run: npm install sass@${{ steps.version.outputs.version }} working-directory: pkg/sass-parser/ + - run: npm run compile - run: npm publish env: NODE_AUTH_TOKEN: '${{ secrets.NPM_TOKEN }}' diff --git a/pkg/sass-parser/CHANGELOG.md b/pkg/sass-parser/CHANGELOG.md index c1303f36f..7a921aa54 100644 --- a/pkg/sass-parser/CHANGELOG.md +++ b/pkg/sass-parser/CHANGELOG.md @@ -6,6 +6,9 @@ * Add support for parsing the `@if` and `@else` rules. +* Fix the deploy of this package so that it actually contains the package's + compiled contents. + ## 0.4.8 * Add support for parsing the `@mixin` rule.