Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/vector_graphics_compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.14

* Makes the package WASM compatible.

## 1.1.13

* Relaxes dependency constraint on vector_graphics_codec.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import 'src/svg/theme.dart';
import 'src/vector_instructions.dart';

export 'src/_initialize_path_ops_io.dart'
if (dart.library.html) 'src/_initialize_path_ops_web.dart';
if (dart.library.js_interop) 'src/_initialize_path_ops_web.dart';
export 'src/_initialize_tessellator_io.dart'
if (dart.library.html) 'src/_initialize_tessellator_web.dart';
if (dart.library.js_interop) 'src/_initialize_tessellator_web.dart';
export 'src/geometry/basic_types.dart';
export 'src/geometry/matrix.dart';
export 'src/geometry/path.dart';
Expand Down
4 changes: 2 additions & 2 deletions packages/vector_graphics_compiler/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: vector_graphics_compiler
description: A compiler to convert SVGs to the binary format used by `package:vector_graphics`.
repository: https://github.com/flutter/packages/tree/main/packages/vector_graphics_compiler
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+vector_graphics%22
version: 1.1.13
version: 1.1.14

executables:
vector_graphics_compiler:
Expand Down Expand Up @@ -32,7 +32,7 @@ dev_dependencies:
sdk: flutter
test: ^1.20.1
# See https://github.com/flutter/flutter/issues/157626
vector_graphics: ">=1.1.11+1 <= 1.1.12"
vector_graphics: ^1.1.13
vector_math: ^2.1.2

platforms:
Expand Down