Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion site/lib/src/loaders/data_processor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ final Map<String, DateTime> _lastModifiedPerPath = () {
}();

extension on DateTime {
String get formatted => '$year-$month-$day';
String get formatted => toIso8601String().substring(0, 10);
}
16 changes: 8 additions & 8 deletions site/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ environment:
sdk: ^3.10.0

dependencies:
build: ^4.0.2
build: ^4.0.4
collection: ^1.19.1
crypto: ^3.0.7
html: ^0.15.6
http: ^1.5.0
jaspr: ^0.22.1
http: ^1.6.0
jaspr: ^0.22.2
jaspr_content: ^0.4.5
# Used as our template engine.
liquify: 1.3.1
markdown: ^7.3.0
markdown_description_list: ^0.1.1
meta: ^1.17.0
meta: ^1.18.1
nanoid2: ^2.0.1
# Used for syntax highlighting.
opal: ^0.2.2
Expand All @@ -33,10 +33,10 @@ dev_dependencies:
url: https://github.com/dart-lang/site-shared
path: pkgs/analysis_defaults
ref: f91ed8ecef6a0b31685804fe4102b25fda021460
build_runner: ^2.10.2
build_web_compilers: ^4.4.0
jaspr_builder: ^0.22.1
sass: ^1.97.2
build_runner: ^2.11.0
build_web_compilers: ^4.4.9
jaspr_builder: ^0.22.2
sass: ^1.97.3
sass_builder: ^2.4.0

jaspr:
Expand Down
2 changes: 1 addition & 1 deletion tool/dash_site/lib/src/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ int installJasprCliIfNecessary() {
'global',
'activate',
'jaspr_cli',
'^0.22.1',
'^0.22.2',
]);

if (activateOutput.exitCode != 0) {
Expand Down
Loading