Skip to content

Commit 5fa04d3

Browse files
authoredSep 18, 2024··
Fix sass-parser publishing (#2349)
1 parent d740d02 commit 5fa04d3

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed
 

‎.github/workflows/release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,12 @@ jobs:
138138
# The repo package has a file dependency, but the released version needs
139139
# a real dependency on the released version of Sass.
140140
- run: npm install sass@${{ steps.version.outputs.version }}
141+
working-directory: pkg/sass-parser/
141142

142143
- run: npm publish
143144
env:
144145
NODE_AUTH_TOKEN: '${{ secrets.NPM_TOKEN }}'
146+
working-directory: pkg/sass-parser/
145147

146148
- name: Get version
147149
id: version

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.79.1
2+
3+
* No user-visible changes.
4+
15
## 1.79.0
26

37
* **Breaking change**: Passing a number with unit `%` to the `$alpha` parameter

‎pkg/sass_api/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 12.0.1
2+
3+
* No user-visible changes.
4+
15
## 12.0.0
26

37
* **Breaking change:** Remove the `SassApiColor.hasCalculatedRgb` and

‎pkg/sass_api/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: sass_api
22
# Note: Every time we add a new Sass AST node, we need to bump the *major*
33
# version because it's a breaking change for anyone who's implementing the
44
# visitor interface(s).
5-
version: 12.0.0
5+
version: 12.0.1
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

99
environment:
1010
sdk: ">=3.0.0 <4.0.0"
1111

1212
dependencies:
13-
sass: 1.79.0
13+
sass: 1.79.1
1414

1515
dev_dependencies:
1616
dartdoc: ^8.0.14

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.79.0
2+
version: 1.79.1
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

0 commit comments

Comments
 (0)
Please sign in to comment.