Skip to content

Commit 9637f21

Browse files
authored
Try again to release 0.20.3 (#1735)
* Move everything * Rewrite mustache internal import * use sdkBin * delete zipfile to keep pub size down * rewrite more imports * Fix more pub errors
1 parent 496c38f commit 9637f21

33 files changed

+1039
-992
lines changed

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ analyzer:
44
enableSuperMixins: true
55
exclude:
66
- 'doc/**'
7+
- 'lib/src/third_party/pkg/**'
78
- 'lib/templates/*.html'
89
- 'pub.dartlang.org/**'
9-
- 'third_party/**'
1010
- 'testing/**'
1111
- 'testing/test_package_flutter_plugin/**'
1212
linter:

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ install:
66
- ps: wget https://storage.googleapis.com/dart-archive/channels/dev/raw/latest/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
77
- cmd: echo "Unzipping dart-sdk..."
88
- cmd: 7z x dart-sdk.zip -o"C:\tools" -y > nul
9+
- cmd: del dart-sdk.zip
910
- set PATH=%PATH%;C:\tools\dart-sdk\bin
1011
- set PATH=%PATH%;%APPDATA%\Pub\Cache\bin
1112
- pub get

lib/src/html/html_generator_instance.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import 'package:dartdoc/src/html/templates.dart';
1515
import 'package:dartdoc/src/logging.dart';
1616
import 'package:dartdoc/src/model.dart';
1717
import 'package:dartdoc/src/model_utils.dart';
18+
import 'package:dartdoc/src/third_party/pkg/mustache4dart/lib/mustache4dart.dart';
1819
import 'package:dartdoc/src/warnings.dart';
19-
import 'package:mustache4dart/mustache4dart.dart';
2020
import 'package:path/path.dart' as pathLib;
2121

2222
typedef void FileWriter(String path, Object content, {bool allowOverwrite});

lib/src/html/templates.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'dart:async' show Future;
88
import 'dart:io' show File;
99

1010
import 'package:dartdoc/src/html/resource_loader.dart' as loader;
11-
import 'package:mustache4dart/mustache4dart.dart';
11+
import 'package:dartdoc/src/third_party/pkg/mustache4dart/lib/mustache4dart.dart';
1212

1313
const _partials = const <String>[
1414
'callable',

lib/src/third_party/pkg/001-mustache4dart-import-rewrite.patch

Lines changed: 1023 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)