MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

maidfile changes + bump version

+16 -7
+15 -6
maidfile.toml
··· 6 6 path = "build" 7 7 script = "meson clean" 8 8 9 - [tasks.setup] 10 - script = "bash -c 'CC=\"ccache /opt/homebrew/opt/llvm/bin/clang\" meson setup build --wipe -Dc_args=-DNO_EXECUTE_PERMISSION'" 11 - 12 9 [tasks.run] 13 10 script = ["maid build -q", "./build/ant %{arg.1}"] 14 11 15 12 [tasks.spec] 16 13 script = ["maid build -q", "./build/ant examples/spec/%{arg.1}.js"] 17 14 18 - [tasks.debug] 19 - script = ["maid build -q", "./build/ant -d %{arg.1}"] 15 + [tasks.save_spec] 16 + script = ['rm spec.txt', ''' 17 + bash -c 'ant examples/spec/run.js \ 18 + | sed "s/\x1b\[[0-9;]*[a-zA-Z]//g" > spec.txt' 19 + '''] 20 + 21 + [tasks.setup] 22 + script = ''' 23 + bash -c 'CC="ccache /opt/homebrew/opt/llvm/bin/clang" \ 24 + meson setup build --wipe -Dc_args=-DNO_EXECUTE_PERMISSION' 25 + ''' 20 26 21 27 [tasks.install] 22 - script = "bash -c 'which ant && cp ./build/ant \"$(which ant)\" || { mkdir -p ~/.local/bin && cp ./build/ant ~/.local/bin/; }'" 28 + script = ''' 29 + bash -c 'which ant && cp ./build/ant "$(which ant)" || 30 + { mkdir -p ~/.local/bin && cp ./build/ant ~/.local/bin/; }' 31 + '''
+1 -1
meson.build
··· 74 74 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 75 75 76 76 version_conf = configuration_data() 77 - version_conf.set('ANT_VERSION', '0.1.1.19') 77 + version_conf.set('ANT_VERSION', '0.1.2.0') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80