Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Issue 11622011: Restructure YAML package suitable for pub lish (Closed)

Created:
8 years ago by Jennifer Messerly
Modified:
7 years, 11 months ago
Reviewers:
nweiz, dgrove, Bob Nystrom
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Restructure YAML package suitable for pub lish After this I can use tools/publish_pkg.py upload script to fix dartbug.com/4126 Committed: https://code.google.com/p/dart/source/detail?r=17685

Patch Set 1 #

Total comments: 3

Patch Set 2 : updated #

Patch Set 3 : fix whitespace #

Total comments: 2

Patch Set 4 : add yaml to create_sdk #

Patch Set 5 : added readme.md #

Patch Set 6 : add yaml exclude #

Unified diffs Side-by-side diffs Delta from patch set Stats (+52 lines, -4548 lines) Patch
A pkg/yaml/README.md View 1 2 3 4 1 chunk +24 lines, -0 lines 0 comments Download
A + pkg/yaml/lib/composer.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/lib/constructor.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/lib/deep_equals.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/lib/model.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/lib/parser.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/lib/visitor.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/lib/yaml.dart View 1 1 chunk +20 lines, -0 lines 0 comments Download
A + pkg/yaml/lib/yaml_map.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/yaml/pubspec.yaml View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
A + pkg/yaml/test/yaml_test.dart View 1 2 1 chunk +5 lines, -3 lines 0 comments Download
M tools/create_sdk.py View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M utils/apidoc/apidoc.gyp View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M utils/pub/lock_file.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M utils/pub/pubspec.dart View 1 1 chunk +1 line, -1 line 0 comments Download
D utils/pub/yaml/composer.dart View 1 1 chunk +0 lines, -173 lines 0 comments Download
D utils/pub/yaml/constructor.dart View 1 1 chunk +0 lines, -56 lines 0 comments Download
D utils/pub/yaml/deep_equals.dart View 1 1 chunk +0 lines, -72 lines 0 comments Download
D utils/pub/yaml/model.dart View 1 1 chunk +0 lines, -234 lines 0 comments Download
D utils/pub/yaml/parser.dart View 1 1 chunk +0 lines, -1939 lines 0 comments Download
D utils/pub/yaml/visitor.dart View 1 1 chunk +0 lines, -27 lines 0 comments Download
D utils/pub/yaml/yaml.dart View 1 1 chunk +0 lines, -55 lines 0 comments Download
D utils/pub/yaml/yaml_map.dart View 1 1 chunk +0 lines, -110 lines 0 comments Download
M utils/tests/pub/lock_file_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M utils/tests/pub/test_pub.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
D utils/tests/pub/yaml_test.dart View 1 1 chunk +0 lines, -1877 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
Jennifer Messerly
Does the description/documentation look okay? Seeing "lib" in an import is a bit strange, but ...
8 years ago (2012-12-17 23:22:04 UTC) #1
nweiz
While you're doing this, you might as well move this into pkg. https://codereview.chromium.org/11622011/diff/1/utils/pub/yaml/lib/yaml.dart File utils/pub/yaml/lib/yaml.dart ...
8 years ago (2012-12-18 18:45:17 UTC) #2
Jennifer Messerly
AFAIK, it's not possible to move to pkg yet, until "package:" imports are supported. The ...
8 years ago (2012-12-18 18:59:31 UTC) #3
nweiz
https://codereview.chromium.org/11622011/diff/1/utils/pub/yaml/lib/yaml.dart File utils/pub/yaml/lib/yaml.dart (right): https://codereview.chromium.org/11622011/diff/1/utils/pub/yaml/lib/yaml.dart#newcode16 utils/pub/yaml/lib/yaml.dart:16: */ On 2012/12/18 18:59:31, John Messerly wrote: > Confused. ...
8 years ago (2012-12-18 19:02:53 UTC) #4
Jennifer Messerly
PTAL! Comment now uses "///" and moved it under to pkg
7 years, 11 months ago (2013-01-26 01:25:32 UTC) #5
Jennifer Messerly
On 2013/01/26 01:25:32, John Messerly wrote: > PTAL! Comment now uses "///" and moved it ...
7 years, 11 months ago (2013-01-26 01:28:55 UTC) #6
Bob Nystrom
LGTM! One other thing that's good to test: Build the SDK and then invoke pub ...
7 years, 11 months ago (2013-01-26 01:39:33 UTC) #7
Jennifer Messerly
yeah I will try running Pub from SDK layout. That was kind of what made ...
7 years, 11 months ago (2013-01-26 01:42:38 UTC) #8
Jennifer Messerly
On 2013/01/26 01:42:38, John Messerly wrote: > yeah I will try running Pub from SDK ...
7 years, 11 months ago (2013-01-26 01:46:38 UTC) #9
Jennifer Messerly
PTAL. I needed some create_sdk magic: https://codereview.chromium.org/11622011/diff2/9001:10024/tools/create_sdk.py
7 years, 11 months ago (2013-01-26 01:51:27 UTC) #10
Jennifer Messerly
also took a shot at the readme
7 years, 11 months ago (2013-01-26 01:55:48 UTC) #11
Bob Nystrom
LGTM again! One more thing: you'll want to add it to the exclude list in ...
7 years, 11 months ago (2013-01-26 02:01:31 UTC) #12
Jennifer Messerly
7 years, 11 months ago (2013-01-26 02:23:40 UTC) #13
On 2013/01/26 02:01:31, Bob Nystrom wrote:
> LGTM again!
> 
> One more thing: you'll want to add it to the exclude list in
> utils/apidoc/apidoc.gyp. That will make sure the YAML docs don't show up on
> http://api.dartlang.org.

done

Powered by Google App Engine
This is Rietveld 408576698