How can I use code in a LiveScript file from another LS file? For instance:
# In script-one.ls foo = 5
Just including both files in HTML via script tags does not work. Changing the first script to export foo = 5 and using require! './script-one' require! './script-one' (or variants) in the second script does not work either.
What about circular dependencies?
source share