aleph.js icon indicating copy to clipboard operation
aleph.js copied to clipboard

Use trunk instead of wasm-pack for yew

Open wyvernbw opened this issue 2 years ago • 0 comments
trafficstars

In the yew docs they recommend using trunk to build your app: https://yew.rs/docs/getting-started/build-a-sample-app I made the following change to dev.ts:

	buildProc = Deno.run({
		cmd: ['trunk', 'build'],
		stdout: 'inherit',
		stderr: 'inherit',
		cwd,
	});

It's a drop in replacement

wyvernbw avatar Feb 19 '23 15:02 wyvernbw