@monodeploy/io
Advanced tools
Comparing version 3.0.0-rc.3 to 3.0.0-rc.4
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -6,0 +10,0 @@ if (k2 === undefined) k2 = k; |
import type { MonodeployConfiguration, PackageVersionMap, YarnContext } from '@monodeploy/types'; | ||
import { Workspace } from '@yarnpkg/core'; | ||
declare const patchPackageJsons: (config: MonodeployConfiguration, context: YarnContext, workspaces: Set<Workspace>, registryTags: PackageVersionMap) => Promise<void>; | ||
declare const patchPackageJsons: ({ config, context, workspaces, registryTags, }: { | ||
config: MonodeployConfiguration; | ||
context: YarnContext; | ||
workspaces: Set<Workspace>; | ||
registryTags: PackageVersionMap; | ||
}) => Promise<void>; | ||
export default patchPackageJsons; |
@@ -5,3 +5,3 @@ "use strict"; | ||
const fslib_1 = require("@yarnpkg/fslib"); | ||
const patchPackageJsons = async (config, context, workspaces, registryTags) => { | ||
const patchPackageJsons = async ({ config, context, workspaces, registryTags, }) => { | ||
const regenerateManifestRaw = async (workspace) => { | ||
@@ -8,0 +8,0 @@ const data = {}; |
{ | ||
"name": "@monodeploy/io", | ||
"version": "3.0.0-rc.3", | ||
"version": "3.0.0-rc.4", | ||
"repository": { | ||
@@ -30,18 +30,18 @@ "type": "git", | ||
"devDependencies": { | ||
"@monodeploy/logging": "0.1.12", | ||
"@monodeploy/logging": "3.0.0-rc.4", | ||
"@monodeploy/test-utils": "link:../../testUtils", | ||
"@monodeploy/types": "0.10.5", | ||
"@monodeploy/types": "3.0.0-rc.4", | ||
"@types/node": "^14.17.14", | ||
"@yarnpkg/core": "^3.1.0", | ||
"@yarnpkg/fslib": "^2.6.0", | ||
"@yarnpkg/shell": "^3.1.0" | ||
"@yarnpkg/core": "^3.2.0", | ||
"@yarnpkg/fslib": "^2.6.1", | ||
"@yarnpkg/shell": "^3.2.0" | ||
}, | ||
"peerDependencies": { | ||
"@monodeploy/logging": "^3.0.0-rc.1", | ||
"@monodeploy/types": "^3.0.0-rc.2", | ||
"@yarnpkg/core": "^3.1.0", | ||
"@yarnpkg/fslib": "^2.6.0", | ||
"@yarnpkg/shell": "^3.1.0" | ||
"@monodeploy/logging": "^3.0.0-rc.4", | ||
"@monodeploy/types": "^3.0.0-rc.4", | ||
"@yarnpkg/core": "^3.2.0", | ||
"@yarnpkg/fslib": "^2.6.1", | ||
"@yarnpkg/shell": "^3.2.0" | ||
}, | ||
"types": "./lib/index.d.ts" | ||
} |
24586
337