Develop wechat miniprograms in gleam.
It uses esbuild and esbuild-plugin-less to build *.json, *.wxml and .wxss files
$ git clone https://github.com/kaiwu/wechat_dev_tools.git your-project
$ cd your-project
$ npm install
$ gleam buildUpdate src/bundle.gleam so that it includes each one of your page and component
pub fn pages() -> List(#(String, Constructor)) {
[#("index", index.page)]
}
pub fn components() -> List(#(String, Constructor)) {
[#("basic", basic.component)]
}Npm scripts are provided for convenience
$ npm run purge
$ npm run clean
$ npm run build
$ npm run watchOne can use the excellent watchexec command to watch gleam file changes, such as
$ # a full continuous building process
$ watchexec -e gleam gleam build
$ npm run watch