@ckeditor/ckeditor5-dev-release-tools
Advanced tools
Comparing version 45.0.2 to 45.0.3
@@ -18,3 +18,3 @@ /** | ||
export default async function checkVersionAvailability( version, packageName ) { | ||
return pacote.manifest( `${ packageName }@${ version }` ) | ||
return pacote.manifest( `${ packageName }@${ version }`, { cache: null } ) | ||
.then( () => { | ||
@@ -21,0 +21,0 @@ // If `pacote.manifest` resolves, a package with the given version exists. |
@@ -18,3 +18,3 @@ /** | ||
export default async function isVersionPublishableForTag( packageName, version, npmTag ) { | ||
const npmVersion = await pacote.manifest( `${ packageName }@${ npmTag }` ) | ||
const npmVersion = await pacote.manifest( `${ packageName }@${ npmTag }`, { cache: null } ) | ||
.then( ( { version } ) => version ) | ||
@@ -21,0 +21,0 @@ // An `npmTag` does not exist, or it's a first release of a package. |
@@ -41,3 +41,3 @@ /** | ||
return pacote.packument( packageName ) | ||
return pacote.packument( packageName, { cache: null } ) | ||
.then( result => { | ||
@@ -44,0 +44,0 @@ const lastVersion = Object.keys( result.versions ) |
{ | ||
"name": "@ckeditor/ckeditor5-dev-release-tools", | ||
"version": "45.0.2", | ||
"version": "45.0.3", | ||
"description": "Tools used for releasing CKEditor 5 and related packages.", | ||
@@ -25,3 +25,3 @@ "keywords": [], | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-dev-utils": "^45.0.2", | ||
"@ckeditor/ckeditor5-dev-utils": "^45.0.3", | ||
"@octokit/rest": "^21.0.0", | ||
@@ -28,0 +28,0 @@ "chalk": "^5.0.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
154565