Skip to content

Commit fd463f9

Browse files
committed
chore: remove legacy widget as it is committed to the test project
1 parent c2f07a2 commit fd463f9

2 files changed

Lines changed: 0 additions & 11 deletions

File tree

-61.2 KB
Binary file not shown.

packages/modules/pusher/scripts/release.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env ts-node-script
22

3-
import { join } from "path";
43
import {
54
addWidgetsToMpk,
65
cloneTestProject,
@@ -14,7 +13,6 @@ import {
1413
runModuleSteps,
1514
writeModuleVersion
1615
} from "@mendix/automation-utils/steps";
17-
import { cp } from "@mendix/automation-utils/shell";
1816

1917
async function main(): Promise<void> {
2018
await runModuleSteps({
@@ -25,22 +23,13 @@ async function main(): Promise<void> {
2523
writeModuleVersion,
2624
copyModuleLicense,
2725
copyWidgetsToProject,
28-
copyLegacyPusherWidget,
2926
createModuleMpk,
3027
addWidgetsToMpk,
3128
moveModuleToDist
3229
]
3330
});
3431
}
3532

36-
async function copyLegacyPusherWidget({ config }: ModuleStepParams) {
37-
logStep("Copying legacy Pusher widget to the module");
38-
cp(
39-
join(config.paths.package, "assets", "Pusher_widget_legacy_1.2.0.mpk"),
40-
join(config.output.dirs.widgets, "Pusher.mpk")
41-
);
42-
}
43-
4433
main().catch(err => {
4534
console.error(err);
4635
process.exit(1);

0 commit comments

Comments
 (0)