How to use the compile function from coffee-script

Find comprehensive JavaScript coffee-script.compile code examples handpicked from public code repositorys.

98
99
100
101
102
103
104
105
106
107
108


const allPaths = [
  {
    paths: ['ui'].concat(glob.sync('gems/plugins/*/app/coffeescripts')),
    glob: '*.coffee',
    transform: source => CoffeeScript.compile(source, {})
  },
  {
    paths: ['ui'].concat(glob.sync('gems/plugins/*/app/jsx')),
    glob: '*.js'
fork icon0
star icon0
watch icon0