Skip to content

Commit 7dc524e

Browse files
committed
chore(publishing): fix pubspec authors field
1 parent 032f8b7 commit 7dc524e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/publish/pubspec_cleaner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var BASE_PACKAGE_JSON = require('../../package.json');
2424
doc['version'] = BASE_PACKAGE_JSON.version;
2525
doc['homepage'] = BASE_PACKAGE_JSON.homepage;
2626
doc['authors'] = Object.keys(BASE_PACKAGE_JSON.contributors).map(function(name) {
27-
return name + ' <' + BASE_PACKAGE_JSON.contributors[name] + '>';
27+
return BASE_PACKAGE_JSON.contributors[name];
2828
});
2929

3030
fs.writeFileSync(pubspecFile, yaml.safeDump(doc));

0 commit comments

Comments
 (0)