File tree 7 files changed +26
-12
lines changed
7 files changed +26
-12
lines changed Original file line number Diff line number Diff line change @@ -127,14 +127,12 @@ jobs:
127
127
check-latest : true
128
128
registry-url : ' https://registry.npmjs.org'
129
129
130
- - name : Get version
131
- id : version
132
- run : |
133
- echo "version=$(jq .version pkg/sass-parser/package.json)" | tee --append "$GITHUB_OUTPUT"
134
-
135
130
# The repo package has a file dependency, but the released version needs
136
131
# a real dependency on the released version of Sass.
137
- - run : npm install sass@${{ steps.version.outputs.version }}
132
+ - name : Get Dart Sass version
133
+ id : dart-sass-version
134
+ run : echo "version=${GITHUB_REF##*/}" | tee --append "$GITHUB_OUTPUT"
135
+ - run : npm install sass@${{ steps.dart-sassversion.outputs.version }}
138
136
working-directory : pkg/sass-parser/
139
137
140
138
- run : npm run compile
@@ -143,7 +141,11 @@ jobs:
143
141
NODE_AUTH_TOKEN : ' ${{ secrets.NPM_TOKEN }}'
144
142
working-directory : pkg/sass-parser/
145
143
146
- - run : git tag sass-parser/${{ steps.version.outputs.version }}
144
+ - name : Get Sass parser version
145
+ id : sass-parser-version
146
+ run : |
147
+ echo "version=$(jq .version pkg/sass-parser/package.json)" | tee --append "$GITHUB_OUTPUT"
148
+ - run : git tag sass-parser/${{ steps.sass-parser-version.outputs.version }}
147
149
- run : git push --tag
148
150
149
151
deploy_homebrew :
Original file line number Diff line number Diff line change
1
+ ## 1.83.3
2
+
3
+ * No user-visible changes.
4
+
1
5
## 1.83.2
2
6
3
7
* Properly display deprecation IDs for the JS Sass API.
Original file line number Diff line number Diff line change
1
+ ## 0.4.11
2
+
3
+ * Fix the automated release process.
4
+
1
5
## 0.4.10
2
6
3
7
* No user-visible changes.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sass-parser" ,
3
- "version" : " 0.4.10 " ,
3
+ "version" : " 0.4.11 " ,
4
4
"description" : " A PostCSS-compatible wrapper of the official Sass parser" ,
5
5
"repository" : " sass/sass" ,
6
6
"author" : " Google Inc." ,
32
32
},
33
33
"dependencies" : {
34
34
"postcss" : " >=8.4.41 <8.5.0" ,
35
- "sass" : " ^1.83.1 "
35
+ "sass" : " file:../../build/npm "
36
36
},
37
37
"devDependencies" : {
38
38
"@types/jest" : " ^29.5.12" ,
Original file line number Diff line number Diff line change
1
+ ## 15.0.3
2
+
3
+ * No user-visible changes.
4
+
1
5
## 15.0.2
2
6
3
7
* No user-visible changes.
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: sass_api
2
2
# Note: Every time we add a new Sass AST node, we need to bump the *major*
3
3
# version because it's a breaking change for anyone who's implementing the
4
4
# visitor interface(s).
5
- version : 15.0.2
5
+ version : 15.0.3
6
6
description : Additional APIs for Dart Sass.
7
7
homepage : https://github.com/sass/dart-sass
8
8
9
9
environment :
10
10
sdk : " >=3.3.0 <4.0.0"
11
11
12
12
dependencies :
13
- sass : 1.83.2
13
+ sass : 1.83.3
14
14
15
15
dev_dependencies :
16
16
dartdoc : ^8.0.14
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.83.2
2
+ version : 1.83.3
3
3
description : A Sass implementation in Dart.
4
4
homepage : https://github.com/sass/dart-sass
5
5
You can’t perform that action at this time.
0 commit comments