teal-language / tl

The compiler for Teal, a typed dialect of Lua
MIT License
2.13k stars 107 forks source link

Cannot create internal_compiler_output as a hidden directory #603

Closed Dich0tomy closed 1 year ago

Dich0tomy commented 1 year ago

Here is my tlconfig.lua:

return {
  gen_target = '5.1',
  gen_compat = 'off',
  global_env_def = 'types',
  include_dir = {
    'types', 'teal',
  },
  source_dir = 'teal',
  build_dir = 'lua',
  build_file_output_dir = 'lua',
  internal_compiler_output = '.teal_tmp'
}

Whenever I run tl build it creates teal_tmp/ instead of .teal_tmp/. Tried to escape it, but then it created \\.teal_tmp/

hishamhm commented 1 year ago

tl build is deprecated — please use Cyan, it is a more powerful build tool, which supports incremental builds and also a more general system of build-time scripts.