Skip to content

Commit 54fd309

Browse files
authored
Cut a release with TS definitions for TRUE/FALSE (#1591)
See sass/sass#3241
1 parent f9dff2e commit 54fd309

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.47.0
2+
3+
### JS API
4+
5+
#### TypeScript Declarations
6+
7+
* Add declarations for the `TRUE` and `FALSE` constants.
8+
19
## 1.46.0
210

311
### JS API

pkg/sass_api/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.0-beta.27
2+
3+
* No user-visible changes.
4+
15
## 1.0.0-beta.26
26

37
* No user-visible changes.

pkg/sass_api/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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: 1.0.0-beta.26
5+
version: 1.0.0-beta.27
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

99
environment:
1010
sdk: '>=2.12.0 <3.0.0'
1111

1212
dependencies:
13-
sass: 1.46.0
13+
sass: 1.47.0
1414

1515
dependency_overrides:
1616
sass: {path: ../..}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.46.0
2+
version: 1.47.0
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

test/legacy_node_api/source_map_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ void main() {
4343
sourceMap: (map) => expectedMap = map);
4444
expectedMap.targetUrl = "out.css";
4545

46+
print(map["mappings"]);
4647
expect(map, containsPair("mappings", expectedMap.toJson()["mappings"]));
4748
});
4849

0 commit comments

Comments
 (0)