Skip to content

Commit 34f82b7

Browse files
committed
js/manifest: remove deploy attribute in polywrap migration 0.4
1 parent b8015ac commit 34f82b7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/js/manifests/polywrap/src/formats/polywrap/migrators/0.3.0_to_0.4.0.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import { PolywrapManifest as NewManifest } from "../0.4.0";
55
export function migrate(migrate: OldManifest, logger?: ILogger): NewManifest {
66
if (migrate.extensions?.deploy) {
77
logger?.warn(
8-
`The Polywrap Deploy Manifest does not needs to be defined in the Polywrap Manifest, please remove it`
8+
`The Polywrap Deploy Manifest ('extensions.deploy') is no longer used within the Polywrap Manifest and has been removed`
99
);
10+
delete migrate.extensions.deploy;
1011
}
1112
return {
1213
...migrate,

0 commit comments

Comments
 (0)