repository-provider
Advanced tools
Comparing version 5.1.0 to 5.1.1
@@ -353,2 +353,5 @@ 'use strict'; | ||
} | ||
function emptyContent(path, options) { | ||
return new Content(path, ""); | ||
} | ||
@@ -567,2 +570,3 @@ class PullRequest { | ||
exports.Content = Content; | ||
exports.emptyContent = emptyContent; | ||
exports.Provider = Provider; |
{ | ||
"name": "repository-provider", | ||
"version": "5.1.0", | ||
"version": "5.1.1", | ||
"publishConfig": { | ||
@@ -40,3 +40,3 @@ "access": "public" | ||
"nyc": "^13.1.0", | ||
"rollup": "^0.65.2", | ||
"rollup": "^0.66.0", | ||
"rollup-plugin-babel": "^4.0.3", | ||
@@ -43,0 +43,0 @@ "rollup-plugin-cleanup": "^3.0.0", |
@@ -6,6 +6,14 @@ import { Branch } from "./branch"; | ||
import { RepositoryGroup } from "./group"; | ||
import { Content } from "./content"; | ||
import { Content, emptyContent } from "./content"; | ||
import { notImplementedError, propertiesFromOptions } from "./util"; | ||
export { Repository, Branch, PullRequest, Owner, RepositoryGroup, Content }; | ||
export { | ||
Repository, | ||
Branch, | ||
PullRequest, | ||
Owner, | ||
RepositoryGroup, | ||
Content, | ||
emptyContent | ||
}; | ||
@@ -12,0 +20,0 @@ /** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
58070
1462